终于解决window命令行下git log中文乱码问题

(有任何问题欢迎留言或私聊 && 欢迎交流讨论哦

闲话:

查阅了好多博客都无法解决我的问题。
本来一直在windows命令行下运行git命令,然后鬼使神差的用git bash试试后,突然发现解决了中文乱码问题。
windows命令行下:
终于解决window命令行下git log中文乱码问题_第1张图片
Git Bash下:
这里写图片描述

解决方案:

首先:
GitBash G i t B a s h 右键选择 options>Text o p t i o n s − > T e x t :
Locale L o c a l e : 选择 zh_CN
charectorset c h a r e c t o r s e t :选择 UTF-8
然后:
GitBash G i t B a s h 下输入命令:

git config --global i18n.commitencoding utf-8
git config --global i18n.logoutputencoding utf-8


还有一些我也不确定是否有用,你们可以查看这个博客: 传送门

你可能感兴趣的:(Git)