Skip to content

Instantly share code, notes, and snippets.

@drusellers
Created July 24, 2012 16:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drusellers/3171140 to your computer and use it in GitHub Desktop.
Save drusellers/3171140 to your computer and use it in GitHub Desktop.
git flow
#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