Created
July 24, 2012 16:52
-
-
Save drusellers/3171140 to your computer and use it in GitHub Desktop.
git flow
This file contains hidden or 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 is aliased as 'g' | |
#g co == git checkout | |
#g c = git commit -m | |
#g rom = git rebase origin/master | |
g clone <your repo> | |
g co -b feature-branch | |
#work | |
#work | |
#work | |
g c "#1234 i fixed the suck" | |
g fetch | |
g rom | |
g co master | |
g merge feature-branch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment