标签:
在非空目录下 git clone 项目时会提示错误信息:
fatal: destination path ‘.‘ already exists and is not an empty directory.
解决办法:
1. 进入非空目录,假设是 /dir/jk1
2. git clone --no-checkout https://git.oschina.net/jankerli/test.git tmp
3. mv tmp/.git .
4. rmdir tmp
5. git reset --hard HEAD
标签:
原文地址:http://www.cnblogs.com/jankerli/p/4458632.html