✨报错提示
Windows 在处理 Git clone 时可能会遇到 Filename too long
的错误,这是由于 Windows 对文件路径长度的限制(默认最大路径长度为 260 个字符)。
以及不知道为什么Pwsh中部分文件名乱码了
✨解决方案
Termianl运行以下命令启用 Git 的长路径支持
git config --system core.longpaths true
运行如下命令验证配置是否生效
git config --system --get core.longpaths
如果命令回显为true
重新clone即可
该配置项为Git的系统级配置
上述命令写入的配置文件位于Git的安装目录下的 etc/gitconfig
⭐转载请注明出处
本文作者:双份浓缩馥芮白
原文链接:https://www.cnblogs.com/Flat-White/p/18250342
版权所有,如需转载请注明出处。
标签:git,Windows,clone,Filename,Git,报错 From: https://www.cnblogs.com/Flat-White/p/18250342