git status中文文件名编码问题解决
- 一、问题
- 二、解决方法
一、问题
在默认配置下,查看文件状态,中文文件名在工作区状态输出,中文名不能正确显示,而是显示为八进制的字符编码。
PS D:\VS代码\Widget> git status
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
"MySQL\346\225\260\346\215\256\345\272\223\350\277\236\346\216\245\346\261\240/"
二、解决方法
通过将git配置变量core.quotepath
设置为false
,就可以解决中文文件名称在这些Git命令输出中的显示问题。
git config --global core.quotepath false
执行完毕再次查看: