git status中文乱码

有时使用命令git status时候会乱码。这只是把中文转换成了Unicode编码了。

git status乱码

解决也很简单,只需要一条命令。

1
git config --global core.quotepath false

这样中文就不会乱码了。

git status乱码