Guide To Syncing Fork With Original Project
https://help.github.com/articles/syncing-a-fork/From my fork, I ran these commands:
- git remote add upstream https://github.com/mrjoes/flask-admin.git
- git fetch upstream
- git merge upstream/master
- git push
Create new branch and sync with upstream (change the bolded text):
- git remote add upstream https://github.com/mrjoes/flask-admin.git
- git fetch upstream
- git checkout -b issue_xxxx upstream/master