0


Git 遇到“File name too long”问题

  1. 在git的命令行界面(git bash)或者Terminal 中输入

git config --get core.longpaths

可以看到界面中是返回了“false”;

  1. 接着我们就可以输入

git config core.longpaths true设置core.longpaths这个配置项为true

如果还是不行,就输入

git config --global core.longpaths true

然后问题“File name too long”得到解决,git bash 中git config --get core.longpaths 的返回是true.

标签: java idea git

本文转载自: https://blog.csdn.net/weixin_70371256/article/details/134489300
版权归原作者 音sky~ 所有, 如有侵权,请联系我们删除。

“Git 遇到“File name too long”问题”的评论:

还没有评论