2023-06-13 16:37:18 +08:00

9 lines
268 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

1. git bash中无法正常显示中文路径
![git bash中无法正常显示中文路径](..\assets\git中文路径编码.png)
```
#不对0x80以上的字符进行quote解决git status/commit时中文文件名乱码
git config --global core.quotepath false
```