Last active
August 29, 2015 14:03
-
-
Save trentbrooks/19514e0985794fd6a21d to your computer and use it in GitHub Desktop.
syncing OF fork with local master, then merge with develop
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
git fetch upstream | |
git checkout master | |
git merge upstream/master | |
git checkout develop | |
git merge upstream/master | |
// merge a branch into master | |
git checkout master | |
git pull origin master | |
git merge develop | |
git push origin master | |
// gitignore problems | |
git rm --cached myApps/*/*.xml | |
// more problems | |
git reset --hard origin/master | |
git reset --hard upstream/master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment