起因:
在idea里设置了terminal使用Git\bin\bash.exe,但是执行git log时显示的中文为<>的形式
解决方法
查了很多资料,最靠谱的是这个解决 Git 在 windows 下中文乱码的问题
1.首先在命令行执行以下命令:让Git支持utf-8编码
$ git config --global core.quotepath false # 显示 status 编码
$ git config --global gui.encoding utf-8 # 图形界面编码
$ git config --global i18n.commit.encoding utf-8 # 提交信息编码
$ git config --global i18n.logoutputencoding utf-8 # 输出 log 编码
$ export LESSCHARSET=utf-8
# 最后一条命令是因为 git log 默认使用 less 分页,所以需要 bash 对 less 命令进行 utf-8 编码
设置完之后,可以看一下C:\Users\Administrator.gitconfig文件,应该有对应的配置
[core]
quotepath = false
[gui]
encoding = utf-8
[i18n "commit"]
encoding = utf-8
[i18n]
logoutputencoding = utf-8
2.让ls命令可以显示中文名称
修改 git-completion.bash 文件,
路径为:安装目录\Git\mingw64\share\git\completion:
# 在文件末尾处添加一行
alias ls="ls --show-control-chars --color"
3.但是我执行完上面的操作还是不行,于是还手动修改了bash.bashrc文件,
位于:安装路径\Git\etc
最下方添加
export LANG="zh_CN.UTF-8"
export LC_ALL="zh_CN.UTF-8"
export LESSCHARSET=utf-8