Windows下Git Bash中文亂碼

2021-06-26 03:29:17 字數 734 閱讀 3649

文章**:

開啟git bash

進入目錄:$ cd /etc

檔案中增加內容

xml**  

[gui]  

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

[i18n]  

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

[svn]  

pathnameencoding = gb2312 #支援中文路徑  

最下面新增

xml**  

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

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

xml**  

set output-meta on #bash中可以正常輸入中文  

set convert-meta off  

最下面新增

xml**  

export lessharset=utf-8  

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

$ source git-completion.bash

$ source inputrc

$ source profile

千里之行,始於足下。改變將來,從現在開始。改變現在,就是改變未來。 個人部落格**:

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,宣告後發到伺服器才...

Windows下Git Bash中文亂碼

文章 開啟git bash 進入目錄 cd etc 1.編輯 gitconfig 檔案 vi gitconfig 檔案中增加內容 gui encoding utf 8 庫統一使用utf 8 i18n commitencoding gb2312 log編碼,window下預設gb2312,宣告後發到伺...