Created
May 1, 2014 20:48
-
-
Save helms-charity/0d3d9f2dcedc4d2f7089 to your computer and use it in GitHub Desktop.
Git steps
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. Checkout | |
2. Status | |
3. commit -a -m "your message here" | |
4. checkout develop | |
5. pull | |
6. status | |
7. merge _________ * | |
8. re-run the build | |
9. push origin develop | |
10. git branch ________ (name of new branch) | |
11. git branch -D _______ (name of old branch) | |
* If there is a conflict, do this for each file: | |
a. git checkout --ours file/name/here.x | |
b. git checkout --theirs file/name/here.x | |
c. git add file/name/here.x | |
AFTER adding all files you want to use 'theirs' for, | |
d. git commit -m "using theirs" | |
e. git pull origin develop | |
f. (go back to step 6...) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment