1,/etc/gitconfig:[gui]
encoding = utf-8 #
**庫統一用urf-8,在git gui中可以正常顯示中文
[i18n]
commitencoding = gb2312 #
log編碼,window下預設gb2312,宣告後發到伺服器才不會亂碼
[svn]
pathnameencoding = gb2312 #
支援中文路徑
2,/etc/git-completion.bash:
alias ls='ls --show-control-chars --color=auto' #
ls能夠正常顯示中文
3,/etc/inputrc:
set output-meta on #
bash中可以正常輸入中文
set convert-meta off
4,/etc/profile:
export lessharset=utf-8 #
$ git log 命令不像其它 vcs 一樣,n 條 log 從頭滾到底,它會恰當地停在第一頁,按 space 鍵再往後翻頁。這是通過將 log 送給 less 處理實現的。以上即是設定 less 的字元編碼,使得 $ git log 可以正常顯示中文。
Windows下Git Bash中文亂碼
文章 開啟git bash 進入目錄 cd etc 檔案中增加內容 xml gui encoding utf 8 庫統一使用utf 8 i18n commitencoding gb2312 log編碼,window下預設gb2312,宣告後發到伺服器才不會亂碼 svn pathnameencodin...
windows下git bash顯示中文
即git安裝路徑 1 c program files git etc git completion.bash 直接新增 alias ls ls show control chars color auto 說明 使得在 git bash 中輸入 ls 命令,可以正常顯示中文檔名。2 c program...
Windows下Git Bash中文亂碼
開啟git bash 進入目錄 cd etc 1.編輯 gitconfig 檔案 vi gitconfig 檔案中增加內容 gui encoding utf 8 庫統一使用utf 8 i18n commitencoding gb2312 log編碼,window下預設gb2312,宣告後發到伺服器才...