有些文档在 git 仓库以中文名的方式存储,但是每次更新 git pull
的时候显示如 “\123\234\124.doc” 看起来很不直观.
我们使用如下两条命令来使其显示正常的中文名称:1
2git config --global core.quotePath false
git config --global core.precomposeunicode true
其实相当于在自己的 gitconfig
配置中 [core] 选项下 手动添加两个选项
$ cat ~/.gitconfig1
2
3
4[core]
quotepath = false
precomposeunicode = true
...