尝试从原始回购更新本地分叉回购时获取 "Could not read from remote repository"

Getting "Could not read from remote repository" when trying to update local forked repo from original repo

我根据此处的说明创建了存储库的分支 -- https://guides.github.com/activities/forking/。然后我将它克隆到我的本地机器上。我想用原始仓库 master 分支中的文件更新我的本地仓库,但我似乎无法弄清楚。我试过了

localhost:resilience-app davea$ git remote add upstream https://github.com/factn/resilience-app
localhost:resilience-app davea$ git pull upstream/master
fatal: 'upstream/master' does not appear to be a git repository
fatal: Could not read from remote repository.

请确保您拥有正确的访问权限

使用原始存储库中的最新文件更新我的本地存储库的正确语法是什么?

如果要同时指定远程存储库和分支的名称,请使用 space 而不是斜杠将它们分隔:git pull upstream master。但是 master 通常是默认分支,所以你可以尝试 git pull upstream.