为什么我不能拉回到回购,错误的原因是什么?

时间:2016-09-18 17:58:02

标签: git github pull

我已经广泛寻找可能的解决方案并继续重新运行我的步骤,但是当我尝试从我的回购中拉出主分支时,我无法理解我收到的错误。

所以我使用以下代码从我的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”是否已设置。

我错过了什么吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

我会尝试以下方法:

  1. 通过git remote -v仔细检查您的遥控器设置是否正确 - 仔细检查网址!
  2. 如果以上内容全部有序,可以尝试通过git remote rm datascience将其删除,然后通过git remote add datascience [URL]重新添加
  3. 您是否有机会获得我们可能看到的存储库链接以便进一步帮助您?

    希望这有帮助。