竞价托管公司,分析seo网站,汕头吧百度贴吧,视频分享网站模板问题描述
在Windows下拉取一些比较大的开源项目经常会提示文件路径太长#xff08;filename too long#xff09;#xff0c;然后死活都不成功
解决办法
1.配置git
git config --system core.longpaths true2.修改文件C:\Program Files\Git\etc\gitconfig#xff08;需…问题描述
在Windows下拉取一些比较大的开源项目经常会提示文件路径太长filename too long然后死活都不成功
解决办法
1.配置git
git config --system core.longpaths true2.修改文件C:\Program Files\Git\etc\gitconfig需要以管理员身份打开
[core]autocrlf truefscache truesymlinks falselongpaths truelongpaths true表示允许路径字符串超过260
3.输入命令查看
git config --system core.longpaths显示结果为true表示已经成功设置