问题描述
在Windows下拉取一些比较大的开源项目经常会提示文件路径太长(filename too long),然后死活都不成功
解决办法
1.配置git
bash
git config --system core.longpaths true
2.修改文件C:\Program Files\Git\etc\gitconfig
(需要以管理员身份打开)
shell
[core]
autocrlf = true
fscache = true
symlinks = false
longpaths = true
longpaths = true
表示允许路径字符串超过260
3.输入命令查看
shell
git config --system core.longpaths
显示结果为true表示已经成功设置