原贴:http://blog.csdn.net/tianzhaoai/article/details/46618535
Git Bush安装之后,如果什么都不设置的话,windows下ls回车之后一般情况下中文都会乱码的。在这就先解决一下这个问题
打开git Bash
进入目录:$ cd /etc
1. 编辑 gitconfig 文件:$ vi gitconfig
文件中增加内容
[cpp] view plain copy
- [gui]
- encoding = utf-8 #代码库统一使用utf-8
- [i18n]
- commitencoding = GB2312 #log编码,window下默认gb2312,声明后发到服务器才不会乱码
- [svn]
- pathnameencoding = GB2312 #支持中文路径
2. 编辑 git-completion.bash 文件:$ vi git-completion.bash
最下面添加
[cpp] view plain copy
- alias ls='ls --show-control-chars --color=auto' #ls能够正常显示中文
3. 编辑 inputrc 文件:$ vi inputrc
修改 output-meta 和 convert-meta 属性值
[cpp] view plain copy
- set output-meta on #bash中可以正常输入中文
- set convert-meta off
4. 编辑 profile 文件:$ vi profile
最下面添加
[cpp] view plain copy
- export LESSHARSET=utf-8
5. 重新编译配置文件,使文件生效
[cpp] view plain copy
- $ source git-completion.bash
- $ source inputrc
- $ source profile
OK,这样就好了。