pychram 中 Terminal 中 git log 中文乱码解决办法

添加环境变量

set LESSCHARSET=utf-8 

执行以下命令

git  config --global core.quotepath false

不成功执行以下命令

git config --global gui.encoding utf-8

git config --global i18n.logoutputencoding utf-8

git config --global i18n.commitencoding utf-8

参考:https://blog.csdn.net/shan_zhi_jun/article/details/84999620

原文地址:https://www.cnblogs.com/dyd520/p/11856088.html