码迷,mamicode.com
首页 > 其他好文 > 详细

Git命令行中文显示错误

时间:2019-01-12 15:18:07      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:export   less   ogr   ESS   git push   输入   let   gb2312   log   

中文文件名乱码(git status、git log、git pull 、git push)

#不对0x80以上的字符进行quote,解决git status/commit时中文文件名乱码
git config --global core.quotepath false

 

ls 显示中文文件乱码(C:\Program Files\Git\etc\git-completion.bash)

alias ls=‘ls --show-control-chars --color=auto‘

 

输入中文(C:\Program Files\Git\etc\inputrc)

set output-meta on

 

中文Commit log(C:\Program Files\Git\etc\profile)

export LESSCHARSET=utf-8

 

Git GUI显示中文(C:\Program Files\Git\etc\gitconfig)

[gui]
encoding = utf-8

 

转换编码(C:\Program Files\Git\etc\gitconfig)

[i18n]
commitencoding = GB2312

 

修改显示编辑器

git config --global core.editor "vim"

 

 

参考:http://xstarcd.github.io/wiki/shell/git_chinese.html

Git命令行中文显示错误

标签:export   less   ogr   ESS   git push   输入   let   gb2312   log   

原文地址:https://www.cnblogs.com/lyc94620/p/10259633.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!