I forked flask repository to my own account.
After several months, there are many new commits to the original flask repo. How to sync these new commits to my fork?
Option 1: In Github Web UI
Three steps: compare, send pull request, and merge.
See Olufemi Israel Olanipeku's answer of How can I keep my fork in sync without adding a separate remote? for details.
Option 2: In Terminal
You can do it via your local clone:
-
Clone leetschau/flask to local machine;
-
Add mitsuhiko/flask as a remote repo;
-
Pull new commit from mitsuhiko/flask to your local machine;
-
Push your local repo to leetschau/flask.
See Syncing a fork for details.