Last active
October 2, 2015 03:18
-
-
Save trentbrooks/523b60764bc5b6cfada7 to your computer and use it in GitHub Desktop.
Instructions for George
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. go into github repo via terminal | |
cd brighthearts-beta | |
// 2. check which branch your on - eg. HPV-Vaccine | |
git branch | |
// 3. delete all your local changes, and reset to what is on github | |
git reset --hard HEAD | |
// 4. pull down the latest changes | |
git pull origin HPV-Vaccine | |
// 5. push all your local changes up to github | |
git add -A | |
git commit -am "insert a message about your changes" | |
git push origin HPV-Vaccine |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment