Windows下Git Bash中文亂碼

文章轉自:http://ideabean.iteye.com/blog/2007367git

打開Git Bashbash

 

進入目錄:$ cd /etc服務器

 

1. 編輯 gitconfig 文件:$ vi gitconfigide

      文件中增長內容svn

Xml代碼   收藏代碼
  1. [gui]  
  2. encoding = utf-8 #代碼庫統一使用utf-8  
  3. [i18n]  
  4. commitencoding = GB2312 #log編碼,window下默認gb2312,聲明後發到服務器纔不會亂碼  
  5. [svn]  
  6. pathnameencoding = GB2312 #支持中文路徑  

 

2. 編輯 git-completion.bash 文件:$ vi git-completion.bashui

    最下面添加編碼

Xml代碼   收藏代碼
  1. alias ls='ls --show-control-chars --color=auto' #ls可以正常顯示中文  

 

3. 編輯 inputrc 文件:$ vi inputrcidea

    修改 output-meta 和 convert-meta 屬性值spa

Xml代碼   收藏代碼
  1. set output-meta on #bash中能夠正常輸入中文  
  2. set convert-meta off  

 

4. 編輯 profile 文件:$ vi profilexml

    最下面添加

Xml代碼   收藏代碼
  1. export LESSHARSET=utf-8  

 

5. 從新編譯配置文件,使文件生效

    $ source git-completion.bash

    $ source inputrc

    $ source profile

相關文章
相關標籤/搜索