Git Bash中文亂碼

2021-08-27 22:30:54 字數 740 閱讀 6559

開啟git bash

進入目錄:$ cd /etc

1. 編輯 gitconfig 檔案:$ vigitconfig

檔案中增加內容

[gui]

encoding=utf-8#**庫統一使用utf-8

[i18n]

commitencoding=gb2312#log編碼,window下預設gb2312,宣告後發到伺服器才不會亂碼

[svn]

pathnameencoding=gb2312#支援中文路徑

2. 編輯 git-completion.bash 檔案:$ vi git-completion.bash

最下面新增

aliasls='ls--show-control-chars--color=auto'#ls能夠正常顯示中文

3. 編輯 inputrc 檔案:$ vi inputrc

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

setoutput-metaon#bash中可以正常輸入中文

setconvert-metaoff

4. 編輯 profile 檔案:$ vi profile

最下面新增

exportlessharset=utf-8

5. 重新編譯配置檔案,使檔案生效

$ source git-completion.bash

$ source inputrc

$ source profile

gitbash解決中文亂碼

進入git安裝目錄,開啟etc目錄 1 編輯gitconfig檔案,檔案中增加內容 1 2 3 4 5 6 gui encoding utf 8 庫統一使用utf 8 i18n commitencoding gb2312 log編碼,window下預設gb2312,宣告後發到伺服器才不會亂碼 svn...

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 bash 進入目錄 cd etc 1.編輯 gitconfig 檔案 vi gitconfig 檔案中增加內容 gui encoding utf 8 庫統一使用utf 8 i18n commitencoding gb2312 log編碼,window下預設gb2312,宣告後發到伺服器才...