美文网首页
非空目录下git clone

非空目录下git clone

作者: 耍帅oldboy | 来源:发表于2021-06-13 12:45 被阅读0次

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

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

解决的办法是:

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

2. git clone --no-checkout https://gitee.com/z_zhang/my_admin .

3. git reset --hard HEAD

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

相关文章

网友评论

      本文标题:非空目录下git clone

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