解決Windows Git Bash中文亂碼問題

 
 

在git 安裝目錄 etc 下面 添加如下配置信息html

1,/etc/gitconfig:git

[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 能夠正常顯示中文。github

參考:http://tiankonguse.com/blog/archives/117bash

http://www.cnblogs.com/Gukw/archive/2012/01/16/2323417.html服務器

https://gist.github.com/vkyii/1079783less

相關文章
相關標籤/搜索