使用git commit提交程式碼時有時會遇到提交中文後顯示亂碼的問題,解決方法也很簡單,只需幾行命令。
git config --global i18n.commitencoding utf-8
git config --global i18n.logoutputencoding utf-8
export LESSCHARSET=utf-8
複製程式碼
也就是設定字符集編碼統一為UTF-8格式
使用git commit提交程式碼時有時會遇到提交中文後顯示亂碼的問題,解決方法也很簡單,只需幾行命令。
git config --global i18n.commitencoding utf-8
git config --global i18n.logoutputencoding utf-8
export LESSCHARSET=utf-8
複製程式碼
也就是設定字符集編碼統一為UTF-8格式