在分配私有存储库之后,git无法克隆

时间:2014-11-14 20:24:58

标签: git github repository

我创建了我的github帐户,并且有人将我添加到私人存储库。添加我后,我可以看到代码并分叉它。现在,当我尝试从分叉存储库分叉后克隆存储库时,我收到错误。这是我正在使用的命令

git clone https://github.com/my_username/forked_repo.git
Cloning into 'project'...
remote: Repository not found.
fatal: repository 'https://github.com/my_username/forked_repo.git/' not found

有人可以帮助我。

提前致谢。我是git的新手。

2 个答案:

答案 0 :(得分:1)

我发现了问题,这是私有仓库,所以尝试使用ssh克隆,但显示相同的错误。问题是我没有将ssh密钥添加到帐户。步骤是

1)生成ssh密钥

2)复制了密钥

3)将密钥粘贴到github帐户。

它解决了这个问题。

答案 1 :(得分:0)

我没有使用我的帐户登录,而且无论是公共还是私人,我都没有解决回购问题:

$  git status
fatal: Not a git repository (or any of the parent directories): .git
$ 
$ 
$  git clone https://github.com/ronisaha/wdCalendar
Cloning into 'wdCalendar'...
remote: Counting objects: 172, done.
remote: Total 172 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (172/172), 246.59 KiB | 0 bytes/s, done.
Resolving deltas: 100% (14/14), done.
Checking connectivity... done
$  git --version
git version 1.8.4

要确保配置几个重要变量:

@ user2413621我从我的私人仓库做了同样的事情。也请仔细检查您的配置。

$ git config --global user.name "my name"
$ git config --global user.email "youremail@realaddress.com"
$ git remote
origin    << If nothing is listed here
$ git remote set-url --add upstream https://gitstuff.com/lalaa  

如果您正确设置了上游设置。我use this tutorial page确保您正确安装了命令行工具。