Add info for how to sync a fork (#840)

This commit is contained in:
Michael Hienle 2018-11-07 23:51:31 +01:00 committed by chad d
parent 4c1e81452a
commit abb99f3674
1 changed files with 5 additions and 1 deletions

View File

@ -34,7 +34,11 @@ Also `git-bug` and `git-refactor`.
### Github
$ git fork strongloop/express
$ git fork strongloop/express
# sync your fork with the original repository:
$ git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
$ git fetch upstream; git merge upstream/master
### Tags