问题描述

在Windows下拉取一些比较大的开源项目经常会提示文件路径太长(filename too long),然后死活都不成功

解决办法

1.配置git

1
git config --system core.longpaths true

2.修改文件C:\Program Files\Git\etc\gitconfig(需要以管理员身份打开)

1
2
3
4
5
[core]
autocrlf = true
fscache = true
symlinks = false
longpaths = true

longpaths = true表示允许路径字符串超过260

3.输入命令查看

1
git config --system core.longpaths

显示结果为true表示已经成功设置


© 2025 hywing 使用 Stellar 创建
总访问 113701 次 | 本页访问 326