赞
踩
在windows下,当使用git clone复制项目时,出现下述错误表示项目中有文件民字符过长的问题,需要开启git的长路径支持解决:
- 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 config --system core.longpaths true
Note: 如果第二步还是报错,可以设置git全局变量的长路径有效:
git config --global core.longpaths true
更多git的 git config设置方式
点击这里查看.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。