Git for Windows 1.8.3中文设置
这里记录Git for Windows 1.8.3 在Windows XP SP3 上的设置。
这些设置也应适用于Git for Windows 1.7.10及以后的版本,但不适用于1.7.10以前的版本。因为1.7.10及以后的版本的Git repositories才原生支持Unincode。
解决问题的总的思路
能用Unicode的地方都用Unicode。
已知问题
?MSYS bash 不能输入中文(MSYS尚不能完全支持Unicode),但有替代办法(workaround)。
下载Git for Windows 1.8.3
前往 http://git-scm.com/download/win 下载最新版Git for Windows 1.8.3。现时的最新版是Git-1.8.3-preview20130601.exe
安装选项
?在 Select Components 中,选定 Use a TrueType font in all console window (not only for Git Bash)
?在 Adjusting your PATH environment 中,选定 Run Git from the windows Command Prompt\
?其他选项保留缺省值
解决MSYS bash 中ls 中文显示???问题
编辑 etc\git-completion.bash,在最后加入
alias ls='ls --show-control-chars --color=auto'
git config --global core.quotepath false
[gui]encoding = utf-8[i18n]commitencoding = {utf-8|gbk}