git clone的时候显示filename too long的解决办法

在Git bash中,运行下列命令即可:

1
git config --global core.longpaths true

如果只想对本次clone有效,只要在上述命令中去掉--global即可。