Git For Windows提示文件名过长 发表于 2021-11-08 分类于 Git 阅读次数: 本文字数: 222 阅读时长 ≈ 1 分钟 错误提示1Filename too long 错误原因Git的文件名限制为4096个字符,而在Windows中Git通过msys编译。因此使用较老版本的Windows API,文件名限制为260个字符。 解决方案1git config --system core.longpaths true 方案参考https://stackoverflow.com/questions/22575662/filename-too-long-in-git-for-windows