Git related configuration and problem solving

Configuration related

problem solved

1. Chinese name file display

The file names displayed in the output of commands such as git status and git diff are in the form of numbers (Unicode). If set git config --global core.quotepath false, special characters in file names will not be escaped as Unicode escape sequences and will instead be displayed in their raw form. Doing this can make the file name easier to read, but can cause problems in some cases, such as if the file name contains spaces or other special characters and you need to surround it with quotes.

Guess you like

Origin blog.csdn.net/qq_36369267/article/details/132741486