如果我们往一个非空的目录下 clone Git 项目,就会提示错误信息:
fatal: destination path '.' already exists and is not an empty directory.
解决的办法是:
- 进入非空目录,假设是 /workdir/proj1
- git clone --no-checkout git clone --no-checkout https://git.oschina.net/user/proj.git tmp
- mv tmp/.git . #将 tmp 目录下的 .git 目录移到当前目录
- rmdir tmp
- git reset --hard HEAD
然后就可以进行各种正常操作了。
转自:http://www.oschina.Net/question/54100_167919?sort=time
网友评论