在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
- 设置系统变量为长路劲有效:
git config --system core.longpaths true
Note: 如果第二步还是报错,可以设置git全局变量的长路径有效:文章来源:https://www.toymoban.com/news/detail-738498.html
git config --global core.longpaths true
更多git的 git config设置方式
点击这里查看.文章来源地址https://www.toymoban.com/news/detail-738498.html
到了这里,关于windows下git clone时出现“Filename too long”错误的解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!