git display Chinese

git display Chinese

Address of this article: blog.lucien.ink/archives/524

By default, git will translate Chinese, as follows:

$ git status

Untracked files:
  (use "git add <file>..." to include in what will be committed)
	"\346\265\213\350\257\225\346\226\207\344\273\266"

solution

Just execute git config --global core.quotepath falseit.

$ git status

Untracked files:
  (use "git add <file>..." to include in what will be committed)
	测试文件

Guess you like

Origin blog.csdn.net/xs18952904/article/details/124395599
Recommended