我在做:

git clone ssh://user@host.com/home/user/private/repos/project_hub.git ./

我得到:

致命:目标路径'。’已经存在,不是空的 目录中。

我知道路。已经存在。 我可以保证这个目录是空的。(我在里面,我什么都看不到!)

为了将该项目克隆到当前目录,我在这里遗漏了什么?


当前回答

解决方法是用圆点, 所以:

rm -rf .* && git clone ssh://user@host.com/home/user/private/repos/project_hub.git .`

Rm -rf .* &&可以省略,如果我们绝对确定目录是空的。

获奖者: @James McLaughlin评论

其他回答

只要在旁边加个点就可以了

git clone git@github.com:user/my-project.git .

从git帮助克隆:

仅当现有目录为空时才允许克隆到该目录。

因此,确保目录为空(使用ls -a检查),否则命令将失败。

通过mkdir filename创建一个新的项目目录,然后运行git clone xxxxx命令,并移动文件,这是很有用的

以下内容可能并不完全等同于克隆游戏,但对我来说却很管用:

git init .
git remote add -t \* -f origin <repository-url>
git checkout master

在我的例子中,这将生成一个.git/config文件,该文件与我在进行克隆时得到的文件相同。

删除与

Rm -rf .*

可能会给你带来麻烦或者更多的错误。

如果你有/path/to/文件夹,并且想要删除其中的所有内容,但不删除该文件夹,只需运行:

Rm -rf /path/to/folder/* .使用实例

解决方法是用圆点, 所以:

rm -rf .* && git clone ssh://user@host.com/home/user/private/repos/project_hub.git .`

Rm -rf .* &&可以省略,如果我们绝对确定目录是空的。

获奖者: @James McLaughlin评论