Git命令列中文顯示錯誤

2022-06-20 09:54:16 字數 767 閱讀 6300

中文檔名亂碼(git status、git log、git pull 、git push)

#不對0x80以上的字元進行quote,解決git status/commit時中文檔名亂碼

git config --global core.quotepath false

ls 顯示中文檔案亂碼(c:\program files\git\etc\git-completion.bash)

alias ls='ls --show-control-chars --color=auto'

輸入中文(c:\program files\git\etc\inputrc)

set output-meta on

中文commit log(c:\program files\git\etc\profile)

export lesscharset=utf-8

git gui顯示中文(c:\program files\git\etc\gitconfig)

[gui]

encoding = utf-8

轉換編碼(c:\program files\git\etc\gitconfig)

[i18n]

commitencoding = gb2312

修改顯示編輯器

git config --global core.editor "vim"

參考:

cmd命令列中文顯示亂碼

cmd命令列中文顯示亂碼,在網上找到一些方法,但都不管用,看到一些資訊說是可能字型缺失,於是找到另外一台電腦,開啟cmd命令列,比對兩台電腦命令列的相關選項有何不同?1.亂碼電腦命令列開啟就是英文顯示的,而正常的電腦是中文顯示 2.開啟命令列的屬性,一項項的比對,發現 自己電腦上的當前 頁是6500...

MySql命令列無法顯示中文

好煩遇到了,遇到mysql命令列無法顯示中文問題?show variables like char 顯示字符集 set names utf8 設定字符集 describer tablename 顯示tablename表中的簡單屬性 show full columns from tablename 顯...

cmd命令列視窗顯示中文亂碼

cmd命令列視窗顯示中文亂碼,多是因為cmd命令列視窗字元編碼不匹配導致。修改cmd視窗字元編碼為utf 8,命令列中執行 chcp 65001 切換回中文 chcp 936 這兩條命令只在當前視窗生效,重啟後恢復之前的編碼。切換cmd視窗字元編碼有風險,例如切換過以後中文顯示亂碼,並且不能永久切換...