写点什么

Git 使用

用户头像
xujiangniao
关注
发布于: 2021 年 06 月 07 日
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 编码


参考




用户头像

xujiangniao

关注

还未添加个人签名 2018.11.09 加入

还未添加个人简介

评论

发布
暂无评论
Git使用