/gist:88a916655ad758a5ee79 Secret
Created
April 15, 2015 12:05
Star
You must be signed in to star a gist
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:(master) ➜ git push origin master | |
| git:(master) ➜ git checkout -b _B1_ | |
| git:(master) ➜ git push origin _B1_ | |
| git:(master) ➜ git checkout -b _B2_ | |
| git:(_B2_) ➜ git add -A | |
| git:(_B2_) ➜ git ci -m "Added files." | |
| git:(_B2_) ➜ git push origin _B2_ | |
| git:(_B2_) ➜ git checkout _B1_ | |
| git:(master) ➜ git merge _B2_ | |
| git:(_B2_) ➜ git push origin staging | |
| Total 0 (delta 0), reused 0 (delta 0) | |
| To git@gitlab.rkmylo:gitirc.git | |
| a78d3fa..f88a9ea _B1_ -> _B1_ | |
| git:(_B2_) ➜ git name-rev --name-only HEAD 2> /dev/null | |
| _B2_ | |
| git:(_B2_) ➜ git status -sb | head -n1 | sed 's/## //g' | |
| _B1_ | |
| git:(_B2_) ➜ git checkout _B1_ | |
| git:(_B2_) ➜ git name-rev --name-only HEAD 2> /dev/null | |
| _B2_ | |
| git:(_B2_) ➜ git status -sb | head -n1 | sed 's/## //g' | |
| _B1_ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment