Skip to content

Instantly share code, notes, and snippets.

@yellow5
Created October 19, 2011 20:59
Show Gist options
  • Save yellow5/1299653 to your computer and use it in GitHub Desktop.
Save yellow5/1299653 to your computer and use it in GitHub Desktop.
git flow examples
# creating a new feature
git flow feature start awesome-new-feature
# pushing to origin for other eyes
git flow feature publish awesome-new-feature
# tracking an existing remote feature branch
git flow feature track another-new-feature
# finishing a feature
git flow feature finish awesome-new-feature
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment