错误-63(文件名太长),同时解压缩从GitHub下载的zip文件

我在GitHub中创build了我的第一个存储库,并将一个XCode项目放入其中。 再次在我的Mac下载.zip文件后,我不能通过双击(但可以通过terminal代码)它解压缩它,因为它读取错误 –

无法将zip文件展开到该文件夹​​。 错误-63(文件名太长)

GitHub链接 – 链接到我的存储库

所以任何解决scheme,使文件解压缩无错误,以便任何用户下载这可能不会面临同样的问题。

你似乎已经版本化了一个被转换成文件夹customSegment的无限循环的符号链接:

 https://github.com/GABHISEKBUNTY/customSegment/tree/master/customSegment/customSegment/customSegment/customSegment/customSegment/customSegment/customSegment/customSegment/customSegment/customSegment/customSegment/customSegment/customSegment/customSegment/customSegment 

确保删除该符号链接,然后添加,提交并再次推送您的回购。
使用最近的git( 2.3.2以上,因为它更符合symlinks )

第一个testing是寻找这些符号链接 :

 cd /path/to/my/repo find . -type l -ls # rm the one referecing customSegment