windows下git bash中文亂碼

2021-09-30 13:06:35 字數 714 閱讀 5744

開啟git bash

進入目錄:$ cd /etc

1. 編輯 gitconfig 檔案:$ vi gitconfig

檔案中增加內容

[gui]  

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

[i18n]  

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

[svn]  

pathnameencoding = gb2312 #支援中文路徑  

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

最下面新增

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

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

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

set convert-meta off  

最下面新增

export lessharset=utf-8  

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

$ source git-completion.bash

$ source inputrc

$ source profile

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