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