美文网首页技术干货
如何 clone git 项目到一个非空目录

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

作者: 寻未四叔 | 来源:发表于2017-12-13 13:14 被阅读0次

    如果我们向一个非空的目录下 clone git 项目,

    git clone https://git.coding.net/BIG-Q/foreheadtech.git forehead.sharevar.com/

    就会提示错误信息:

    fatal: 目标路径 'forehead.sharevar.com' 已经存在,并且不是一个空目录。

    解决的办法是:

    1. 进入非空目录, 进入forehead.sharevar.com文件夹

    2. git clone --no-checkout https://git.coding.net/BIG-Q/foreheadtech.git  foreheadtech

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

    4. rmdir foreheadtech

    5. git reset --hard HEAD

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

    转:http://www.oschina.net/question/54100_167919?sort=time

    相关文章

      网友评论

        本文标题:如何 clone git 项目到一个非空目录

        本文链接:https://www.haomeiwen.com/subject/gumaixtx.html