git操作時中文顯示亂碼的解決方法

醉逍遙neo發表於2019-02-12

使用git commit提交程式碼時有時會遇到提交中文後顯示亂碼的問題,解決方法也很簡單,只需幾行命令。

git config --global i18n.commitencoding utf-8
git config --global i18n.logoutputencoding utf-8
export LESSCHARSET=utf-8
複製程式碼

也就是設定字符集編碼統一為UTF-8格式

相關文章