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

Execute git config --global core.quotepath false .

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

This article is reprinted from: https://blog.lucien.ink/archives/524/
This site is for inclusion only, and the copyright belongs to the original author.

Leave a Comment