windows的git clone由于中文字符转码导致respority not found
时间: 2023-05-31 07:07:05 浏览: 155
Git原理命令介绍以及eclipse下使用egit和gitclone
这个问题可能是由于中文字符在git clone时未被正确转码所导致的。解决方法如下:
1. 打开git bash终端,输入以下命令:
```
git config --global core.quotepath false
```
2. 重新clone你的repository:
```
git clone <repository-url>
```
这个命令会将中文字符正确地转码,避免出现respority not found的错误。
阅读全文