Git

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 
  cd repository
  git config core.symlinks false
  git checkout 

你可能感兴趣的:(Git)