解決git在Windows下中文亂碼問題

修正git中文亂碼問題

1. 修正git-gui和gitk

git config --global gui.encoding utf-8

2. 修正git show

永久設使用者環境變數
SETX LC_ALL C.UTF-8

需使用系統管理員權限的powershell或命令提示字元

3. 修正git status 顯示中文檔名亂碼

git config --global core.quotepath false

參考資料

https://blog.miniasp.com/post/2017/09/17/Git-for-Windows-Command-Prompt-Display-Chinese-Issues

留言