Android git reflog 或 git log打印日志的乱码解决方案

Android Studio 用git 命令行打印提交记录的时候,有时会出现类似下面的十六进制乱码:

解决办法:依次输入以下三行命令

1,git config --global i18n.commitencoding utf-8

2,git config --global i18n.logoutputencoding gbk|utf-8

3,set LESSCHARSET=utf-8

注:(1)如果第二条识别不了,可以删掉后面的utf-8或者gbk;

        (2)第三条建议添加为环境变量,环境变量名称:LESSCHARSET  值 utf-8

你可能感兴趣的:(Android git reflog 或 git log打印日志的乱码解决方案)