没有父目录的Git克隆在Nitrous.io中失败

时间:2014-08-02 05:03:39

标签: git github directory fatal-error nitrousio

fatal: destination path '.' already exists and is not an empty directory.是我的Nitrous.io框中对git clone my-repo .的回复。我删除了所有内容并从根目录运行它。另外,运行ls不会给我什么,所以它是一个空目录。

我是否遗漏了某些内容,或者这是Nitrous.io如何设置的问题?

screenshot of my empty dir

1 个答案:

答案 0 :(得分:1)

  

从根目录

运行

然后,您必须使用git clone url .,因为.指的是现有文件夹(此处为您的根目录)。

使用:

git clone /url/to/my/repo: will create a 'repo' subfolder
# or
git clone /url/to/my/repo asubfolder: will create a 'subfolder'