在windows下,当使用git clone复制项目时,出现下述错误表示项目中有文件民字符过长的问题,需要开启git的长路径支持解决:
bash
fatal: cannot create directory at 'xxxx': Filename too long
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry with 'git restore --source=HEAD :/'
方法如下:
-
使用管理员模式运行git
-
设置系统变量为长路劲有效:
git config --system core.longpaths true
Note: 如果第二步还是报错,可以设置git全局变量的长路径有效:
git config --global core.longpaths true
更多git的 git config设置方式
点击这里查看.