Git Can';t克隆RhoHub存储库-访问被拒绝

Git Can';t克隆RhoHub存储库-访问被拒绝,git,rhomobile,Git,Rhomobile,我已将ssh密钥添加到RhoHub,但仍然收到拒绝访问错误。有什么想法吗 $ git clone git@git.rhohub.com:remcat/First App.git Initialized empty Git repository in /home/Ramy/App.git/.git/ Access denied... fatal: The remote end hung up unexpectedly $ git clone 'git@git.rhohub.com:remcat/

我已将ssh密钥添加到RhoHub,但仍然收到拒绝访问错误。有什么想法吗

$ git clone git@git.rhohub.com:remcat/First App.git
Initialized empty Git repository in /home/Ramy/App.git/.git/
Access denied...
fatal: The remote end hung up unexpectedly

$ git clone 'git@git.rhohub.com:remcat/First App.git'
Initialized empty Git repository in /home/Ramy/First App/.git/
usage: git upload-pack [--strict] [--timeout=nn] <dir>
Error executing 'git-upload-pack'...
fatal: The remote end hung up unexpectedly
$git克隆git@git.rhohub.com:remcat/First App.git
已在/home/Ramy/App.Git/.Git中初始化空Git存储库/
访问被拒绝。。。
致命:远程端意外挂起
$git克隆'git@git.rhohub.com:remcat/First App.git'
已在/home/Ramy/First App/.Git中初始化空Git存储库/
用法:git上传包[--strict][--timeout=nn]
执行“git上载包”时出错。。。
致命:远程端意外挂起

如果您的远程回购url包含空格,您可能需要在其周围添加引号:

git clone "git@git.rhohub.com:remcat/First App.git"
否则,它将在本地目录“
App.git
”中查找名为“
App
”的回购协议,我怀疑这不是您想要的

如果错误仍然存在,则需要检查ssh问题,如“”中所述

然后至少从ssh-vvt开始git@git.rhohub.com


但是,首先,确保url中的空格不是这里的实际问题。

好的,我尝试了单引号(你可以在原始问题中看到)。今晚我会用双引号给你一个机会,让你知道。嗯,我想你对这个空间的看法是对的,但我最终只是创建了一个名为“MyApp”的新应用程序。无法使原件正常工作。