我在做:

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

我得到:

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

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

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


当前回答

以下是我的发现:

我看到了这个:

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

在我的搜索中,我偶然发现:

https://couchpota.to/forum/viewtopic.php?t=3943

看看Clinton.Hall的词条… 如果你尝试这样做(就像我做的那样),你可能会得到访问拒绝响应,这是我的第一个线索,所以最初的错误(对我来说),实际上是逃避到错误的根本问题。

在windows中解决此问题: 确保运行CMD或git elevated,然后运行:

git clone https://github.com/RuudBurger/CouchPotatoServer.git

以上就是我的问题,简单地提升对我来说很有效。

其他回答

所以我通过删除根目录中隐藏的.git文件夹,然后在根/dist文件夹中的'git clone repo .'中添加句点来修复这个相同的错误。这是vue-cli webpack项目的上下文。所以其他人说的都是对的,这通常意味着你在你想要克隆的文件夹或父文件夹或根文件夹中有git跟踪!

为了确保你可以克隆这个repo,转到任何临时目录并在那里克隆项目:

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

这将把你的东西克隆到project_hub目录中。

一旦克隆完成,你可以把这个目录移动到任何你想要的地方:

mv project_hub /path/to/new/location

这是安全的,不需要任何神奇的东西。

git clone ssh://user@host.com/home/user/private/repos/project_hub.git $(pwd)

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

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

从git帮助克隆:

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

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

Do

git clone https://user@bitbucket.org/user/projectname.git .

目录必须为空