We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Add the remote, call it upstream:
upstream
git remote add upstream git@github.com:tripit/slate.git
Fetch all the branches of that remote into remote-tracking branches, such as upstream/master:
upstream/master
git fetch upstream
Make sure that you're on your master branch:
git checkout master
Merge your our updates into your master branch:
git merge upstream/master
Push the updated code to Github:
git push
Publish the new changes to Github pages:
rake publish
(Thanks to Mark Longair on StackOverflow for the upsteam explanation.)