从远程主分支的git pull

  1. I forked a repo on GitLab
  2. Cloned my fork to my local machine
  3. Made some changes, then pushed to my fork.
  4. Some changes have been made on the original repo and I want to git pull so everything is up to date.

这可能吗?

I've tried git pull and git pull origin master and got everything is up-to-date. (makes sense)

git pull upstream gave me the following message:

您要求从远程“上游”拉出,但未指定   分店。

我不知道如何指定这些分支,我尝试过的所有东西都不返回分支。但是我觉得这是正确的方向。

分行:

 * master
 remotes/origin/HEAD -> origin/master
 remotes/origin/master

I'm not sure the difference between these two branches. Or which one is the original repo to begin. I'm all out of git pull ideas and feel there might be something else I'm missing?