Keeping A GitHub Fork Updated
Posted by jpluimers on 2017/02/21
git fetch upstream
git rebase upstream/master
Source: Keeping A GitHub Fork Updated
For GitHub pull requests, then:
git checkout -b feature-name upstream/master
Source: Git Forks And Upstreams: How-to and a cool tip | Atlassian Git Tutorial
–jeroen
Leave a Reply