This file contains 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 flow feature publish MYFEATURE |
This file contains 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
# Get a feature published by another user. | |
git flow feature pull origin MYFEATURE | |
# You can track a feature on origin by using | |
git flow feature track MYFEATURE |
This file contains 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
# To start a release, use the git flow release command. It creates a release branch created from the 'develop' branch. | |
# You can optionally supply a [BASE] commit sha-1 hash to start the release from. The commit must be on the 'develop' branch. | |
git flow release start RELEASE [BASE] |
This file contains 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 flow release publish RELEASE | |
# You can track a remote release with the command | |
git flow release track RELEASE |
This file contains 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 flow release finish RELEASE | |
# Don't forget to push your tags with | |
git push origin --tags |
This file contains 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
# The version argument hereby marks the new hotfix release name. Optionally you can specify a basename to start from. | |
git flow hotfix start VERSION [BASENAME] |
This file contains 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 flow hotfix finish VERSION |
This file contains 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
+-------+ | |
+-|init |-+ | |
+--------+ | +-------+ | +-------+ +----+ | |
|git flow|-+-|feature|-+-+-|start |-+-|NAME| | |
+--------+ | +-------+ | | +-------+ | +----+ | |
+-|release|-+ +-|finish |-+ | |
| +-------+ | | +-------+ | | |
+-|hotfix |-+ +-|publish|-+ | |
+-------+ | +-------+ | | |
+-|pull |-+ |
This file contains 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
:registers |
This file contains 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
"bp |