搜索
您的当前位置:首页正文

使用mingw执行git diff遇到中文乱码的问题

来源:好走旅游网

使用mingw软件执行git diff时,遇到中文乱码的问题:

解决方案:

 1. 软件设置

2. 在mingw软件中输入以下设置:

$ 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 diff命令,中文显示正常:

 

 

因篇幅问题不能全部显示,请点此查看更多更全内容

Top