Git
2018-01-07 本文已影响115人
未冬九
1. File name too long
git clone下载git的时候,_checkout_的时候出现以下错误:
error: unable to create symlink *README.md*: File name too long
fatal: unable to checkout working tree
解决方法:
git clone --no-checkout <https://my.git.com/repository.git>
cd repository
git config core.symlinks false
git checkout <branch>