We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 git@github.com: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