Here is what I did:
- Forked a repo
- Created new feature branch on my fork
- Submitted PR to original repo master (accepted, merged)
Next How Do I:
- Update "master" in my own fork?
Here is what I did:
Next How Do I:
Below two commands will update your local master branch.
git checkout master
git pull
As suggested in the comments, the relevant operation is fork synchronization:
Add the upstream remote, call it "upstream"
git fetch from the upstream remote
git fetch upstream
check out "master" from my fork
git checkout master
merge the upstream master (which now has my accepted changes) into my master
git merge upstream/master