/

解决 Git 中文文件名乱码

在使用 git status 时,中文文件名出现乱码。解决方法:

git config --global core.quotepath false

core.quotepath 设为 false 的话,就不会对 0x80 以上的字符进行 quote,中文显示正常。

References