What I can do to resolve “1 commit behind master”?

前端 未结 7 2040
予麋鹿
予麋鹿 2020-12-12 10:11

After pushing I\'ve been seeing this message at remote repository:

1 commit behind master.

This merge has conflicts that must be resolved before i

7条回答
  •  自闭症患者
    2020-12-12 11:03

    1. Clone your fork:

      • git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
    2. Add remote from original repository in your forked repository:

      • cd into/cloned/fork-repo
      • git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
      • git fetch upstream
    3. Updating your fork from original repo to keep up with their changes:

      • git pull upstream master
      • git push

提交回复
热议问题