Skip to content

Syncing an upstream master

richardkchapman edited this page Apr 15, 2013 · 3 revisions

Assuming you have set the 'upstream' remote branch in your local git repository to point at the hpcc-systems repository on GitHub, for example using

git remote add upstream [email protected]:hpcc-systems/HPCC-Platform.git

Then you can sync your personal GitHub repository with the upstream one using the following steps:

git checkout master

git fetch upstream

git merge --ff-only upstream/master

git push origin master