How to handle Asian characters in file names in Git on OS X
Git quotes any non-ascii character by default, not only asian ones. There’s an option to disable this quoting behaviour. You can disable it using the following command: git config –global core.quotepath false Or, alternatively, by adding the following snippet to your git config file ($HOME/.gitconfig usually) [core] quotepath = false After this, git should show … Read more