Home Git乱码问题
Post
Cancel

Git乱码问题

git diff比较文件差异时,中文显示为乱码

git diff接受的编码格式utf-8,而filename是以gb2312格式编写的,所以git diff命令就显示乱码。

解决办法:

在vim中将filename另存为utf-8格式。

git status查看修改历史时,中文显示乱码

解决方法:

1
git config core.quotepath false
This post is licensed under CC BY 4.0 by the author.