Git 使用
git 中文乱码
git config --global core.quotepath false # 不对 0x80 以上的字符进行 quote,解决 git status/commit 时中文文件名乱码
git config --global i18n.commitencoding utf-8 # 提交信息编码
git config --global i18n.logoutputencoding utf-8 # 输出 log 编码
git config --global svn.pathnameencoding GB2312 # 支持中文路径
export LESSCHARSET=utf-8 # git log 默认使用 less 分页,所以需要 bash 对 less 命令进行 utf-8 编码
评论