git 中文文件名乱码

git 默认中文文件名是 \xxx\xxx 等八进制形式,是因为 对0x80以上的字符进行quote。

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

git config --global core.quotepath false

 

git config --global core.quotepath false

posted @ 2018-10-10 10:41  极·简  Views(4174)  Comments(1Edit  收藏  举报