git 在非空文件夹clone新项目

在非空目录下 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

原文地址:https://www.cnblogs.com/nanyangzp/p/5919835.html