mac下git显示中文被转义

默认下,mac的git显示中文是被转义的:

"source/_posts/git\344\275\277\347\224\250\347\254\224\350\256\260.md"

配置core.quotepath为false,就可以让git不转义:

git config core.quotepath false

然后git st的显示效果为:

source/_posts/linux/git使用笔记.md

参考地址