Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Get all the changes locally: git fetch --all.

  2. Switch to master: git switch master.

  3. Merge the changes from upstream: git merge upstream. If everything has been done right, this will be a fast-forward merge, with no explicit merge commit.

  4. Push the changes to your fork to keep it up to date: git push origin master.

...