git 默认中文文件名是 \xxx\xxx 等八进制形式,是由于 对0x80以上的字符进行quote。git
只须要设置core.quotepath设为false,就不会对0x80以上的字符进行quote。中文显示正常spa
git config --global core.quotepath false
git config --global core.quotepath falsecode