forked from ringcentral/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
Updating Slate
YMHuang edited this page May 17, 2016
·
3 revisions
Add the remote, call it upstream
:
git remote add upstream [email protected]:tripit/slate.git
Fetch all the branches of that remote into remote-tracking branches, such as upstream/master
:
git fetch upstream
Make sure that you're on your master branch:
git checkout master
Merge 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:
./deploy.sh
(Thanks to Mark Longair on StackOverflow for the upsteam explanation.)