Git Bash 中文乱码问题
·
问题描述
git bash 中查看文件列表或者执行 git status 的时候,中文文件名字显示不正常,会转译成反斜杠加3个数字的8进制 ASCII 编码。
解决方案:
第一步:设置终端显示的编码,git bash 窗口右键设置支持中文字符,选择 Options ->Text,选择zh_CN、UTF-8
第二步:在 git bash 终端执行以下命令:
git config --global core.quotepath false
git config --global gui.encoding utf-8
git config --global i18n.commitencoding utf-8
git config --global i18n.logoutputencoding utf-8
export LESSCHARSET=utf-8
更多推荐
已为社区贡献5条内容
所有评论(0)