码迷,mamicode.com
首页 > 其他好文 > 详细

如何 clone git 项目到一个非空目录

时间:2021-04-05 12:21:02      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:git   假设   har   ati   https   one   res   exist   empty   

如果我们往一个非空的目录下 clone git 项目,就会提示错误信息:

fatal: destination path ‘.‘ already exists and is not an empty directory.

解决的办法是:

1. 进入非空目录,假设是 /workdir/proj1

2. git clone --no-checkout https://git.oschina.net/NextApp/platform.git tmp

3. mv tmp/.git .   #将 tmp 目录下的 .git 目录移到当前目录

4. rmdir tmp

5. git reset --hard HEAD

然后就可以进行各种正常操作了。

如何 clone git 项目到一个非空目录

标签:git   假设   har   ati   https   one   res   exist   empty   

原文地址:https://www.cnblogs.com/s1ihome/p/14613078.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!