2016-09-18 88 views
0

我已经广泛地寻找可能的解决方案,并继续通过我的步骤重新运行,但当我试图从我的回购中拉出主分支时,我无法克服收到的错误。为什么我不能回到回购站,错误的原因是什么?

所以我一直在拉我的回购从我Github上的帐户用下面的代码:

$ git pull datascience master 

我不断收到此错误:

fatal: 'datascience' does not appear to be a git repository 
fatal: Could not read from remote repository. 
Please make sure you have the correct access rights 
and the repository exists. 

我在Gitbash验证我的配置,并检查我的远程“Datascience”已建立。

我错过了什么吗?

谢谢。

+3

你克隆了回购? – user6837640

+1

'git remote -v'的输出是什么? –

+0

_“我已经在Gitbash中验证了我的配置,并检查了我的远程”Datascience“已建立。”_ - 你是如何验证这一点的? – 1615903

回答

0

我会尝试以下方法:

  1. 仔细检查你的遥控器是正确安装通过git remote -v - 仔细检查网址!
  2. 如果以上一切都是为了,也许尝试通过git remote rm datascience删除它,然后通过git remote add datascience [URL]

重新添加你能找到存储库的链接,我们也许能看到为了进一步帮助你?

希望这会有所帮助。

相关问题