赞
踩
进入git安装目录,通常是C:\Program Files (x86)\Git\
1. 编辑etc\gitconfig文件,在文件末尾增加以下内容:
[gui]
encoding = utf-8 #代码库统一使用utf-8
[i18n]
commitencoding = GB2312 #log编码,windows默认gb2312,声明后发到服务器才不会乱码
[svn]
pathnameencoding = GB2312 #支持中文路径
2. 编辑etc\git-completion.bash文件,在文件末尾增加以下内容:
alias ls='ls --show-control-chars --color=auto' #ls能够正常显示中文
3. 编辑etc\inputrc文件,修改output-meta和convert-meta属性值:
set output-meta on #bash可以正常输入中文
set convert-meta off
4. 编辑profile文件,在文件末尾添加如下内容:
export LESSHARESET=utf-8
参考资料:
http://www.cnblogs.com/wangkongming/p/3821305.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。