Paul's Programming Notes PostsRSSGithub

Guide To Syncing Fork With Original Project

https://help.github.com/articles/syncing-a-fork/

From my fork, I ran these commands:

  1. git remote add upstream https://github.com/pallets-eco/flask-admin.git
  2. git fetch upstream
  3. git merge upstream/master
  4. git push

Create new branch and sync with upstream (change the bolded text):

  1. git remote add upstream https://github.com/pallets-eco/flask-admin.git
  2. git fetch upstream
  3. git checkout -b issue_xxxx upstream/master

Django: Working with Git and GitHub