Skip to content

Instantly share code, notes, and snippets.

@jeremyvaught
Forked from imsickofmaps/gitflowing.md
Created October 18, 2013 12:49
Show Gist options
  • Save jeremyvaught/7041046 to your computer and use it in GitHub Desktop.
Save jeremyvaught/7041046 to your computer and use it in GitHub Desktop.

How we use git-flow

The commands

Make it work locally

$ git flow init

Create a issue on github (e.g. Start blog application).

Start the feature

$ git flow feature start issue-1-start-blog-application

Code like a madman

$ git flow feature publish issue-1-start-blog-application

Convert to a pull request

$ git pull-request -i 1 -b develop

Send someone the pull-request link or @mention them

Once its got a +1 from the reviewer(s) and tests are passing on Travis

$ git flow feature finish issue-1-start-blog-application
$ git push
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment