Created
October 19, 2011 20:59
-
-
Save yellow5/1299653 to your computer and use it in GitHub Desktop.
git flow examples
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
# 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