克隆 git 存储库时出错

Errors cloning a git repo

我是 Git 的新手,对于 class 作业,我需要克隆讲师设置的回购作为本周大约 50 次的第一步。他的指示是:

mkdir -p ${HOME}/cpsc59700
cd ${HOME}/cpsc59700
git clone git@github.com: lewisu-research-compsci/assign0-git tu2
cd tu2
TUTROOT=${PWD}

他说 "the first argument specifies the remote repositoy in GitHub you would like to clone and the second argument specifies the name to give to the new local repository." 我猜 "lewisu-research-compsci/assign0-git" 是远程仓库,而 "tu2" 是本地仓库。

每次我尝试 运行 git 克隆命令时,我都会遇到以下错误:

fatal: Too many arguments

如果我不使用 tu2 参数,我会收到以下错误:

Cloning into 'lewisu-research-compsci/assign0-git'...
Enter passphrase for key '/c/user/Brian/.ssh/id_rsa':

当我输入用于创建 ssh 密钥的密码时,出现以下错误:

ERROR: Repository not found.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

当我登录 Github.com 时,我可以访问存储库。另外,当我尝试使用 Git Desktop 时,我可以克隆让我感到困惑的存储库。我已经给老师发了电子邮件,因为它是在线 class 但到目前为止(3 天后),我还没有收到他的回音。对我做错了什么有什么建议吗?

尝试删除域名后的 space,如下所示:

git clone git@github.com:lewisu-research-compsci/assign0-git tu2

space 导致 lewisu-research-compsci/assign0-git 成为您的第二个参数,tu2 成为第三个参数,这就是错误显示 "too many arguments".

的方式

希望您能够创建目录并进入其中。然后按照以下步骤

1) 转到以下 link.

https://github.com/lewisu-research-compsci/assign0-git

2) 单击复制到剪贴板按钮。 3) 打开您的终端并导航到您要获取克隆的目录。

4) 然后键入 git clone https://github.com/lewisu-research-compsci/assign0-git.git