解决 windows 下 git 不显示中文问题

windows 使用 git bash 时,中文会显示编码方式,看着很不人性化:

image-20230310103203251

可以修改成中文正常显示,步骤如下:

  • (1)右击窗口上方,进入 Options–>Text 界面,设置 zh_CN 中文编码方式:

image-20230310102606682

  • (2)在命令行执行命令:
1
git config --global core.quotepath false

然后就能正常显示中文了:

image-20230310103634568