當使用時,會出現以下三種情況的中文亂碼:
1.ls不能顯示中文目錄
解決辦法:在%git_home%/etc/git-completion.bash中增加一行:
alias ls='ls --show-control-chars --color=auto'
2.git commit不能提交中文注釋
解決辦法:修改%git_home%/etc/inputrc中對應的行:
set output-meta on
set convert-meta off
3.git log無法顯示中文注釋
解決辦法:在%git_home%/etc/profile中增加一行:
export lesscharset=iso8859
解決 GIT 中文亂碼問題
進入git安裝目錄,改一下配置就可以基本解決 gui encoding utf 8 i18n commitencoding gbk svn pathnameencoding gbk說明 開啟 git 環境中的中文支援。pathnameencoding設定了檔案路徑的中文支援。alias ls ls ...
git手札 git bash中文亂碼問題
在git 安裝目錄 etc 下面 新增以下配置資訊 在安裝目錄下的etc目錄中可能沒有這些檔案,自己新建乙個 1,etc gitconfig gui encoding utf 8 庫統一用urf 8,在git gui中可以正常顯示中文 i18n commitencoding gb2312 log編碼...
GIT中文亂碼問題解決
進入git安裝目錄,改一下配置就可以基本解決 1 etc gitconfig gui encoding utf 8 i18n commitencoding utf 8 svn pathnameencoding utf 8說明 開啟 git 環境中的中文支援。pathnameencoding設定了檔案...