git 中文文件名乱码
git 默认中文文件名是 \xxx\xxx 等八进制形式,是因为 对0x80以上的字符进行quote。
只需要设置core.quotepath设为false,就不会对0x80以上的字符进行quote。中文显示正常
git config --global core.quotepath false
git config --global core.quotepath false
文章首发于微信公众号【前端路引】,欢迎 微信扫一扫 查看更多文章。
本文来自博客园,作者:前端路引,转载请注明原文链接:https://www.cnblogs.com/linx/p/9765016.html