Git解决Filename too long的问题

git有可以创建4096长度的文件名,然而在windows最多是260,因为git用了旧版本的windows api,为此踩了个坑。

解决方式是:

git config --global core.longpaths true

你可能感兴趣的:(软件安装)