linux git log 中文乱码,修复git diff正文中文乱码

Linux

git diff正文中文乱码

在命令行下输入以下命令:

$ 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 编码

想长期生效的 话要改profile添加环境变量。

修复git diff正文中文乱码

Windows

在命令行下输入以下命令:

$ 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 编码

我使用cmd,直接添加环境变量LESSCHARSET,变量值utf-8,重启电脑让变量生效。

不重启电脑快速测试的话,cmd输入命令

set LESSCHARSET=utf-8

用Git bash的看参考二。

Windows修复git diff正文中文乱码

参考

你可能感兴趣的:(linux git log 中文乱码,修复git diff正文中文乱码)