git下载文件时提示文件路径超长
git在windows下pull/checkout/clone仓库时,会提示“Filename too long”。
error: cannot stat 'spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/resources/org/springframework/boot/gradle/tasks/bundling/BootJarIntegrationTests-whenAResolvableCopyOfAnUnresolvableConfigurationIsResolvedThenResolutionSucceeds.gradle': Filename too long
git有可以创建4096长度的文件名,然而在windows最多是260,因为git用了旧版本的windows api,为此踩了个坑。
解决方法:
使用git bash输入:
git config --global core.longpaths true
再次执行clone就不会出错了