Skip to content

Instantly share code, notes, and snippets.

@aabs
Created November 10, 2022 00:54
Show Gist options
  • Save aabs/b1d832ceaefbff0b822e9f93df5feb7e to your computer and use it in GitHub Desktop.
Save aabs/b1d832ceaefbff0b822e9f93df5feb7e to your computer and use it in GitHub Desktop.
The built-in commands for git flow
Task Instructions
Convert a repo to use gitflow git flow init
Start a new feature git flow feature start MYFEATURE
Finish a feature git flow feature finish MYFEATURE
publish a feature git flow feature publish MYFEATURE
get a published feature git flow feature pull origin MYFEATURE
track a published feature git flow feature track MYFEATURE
create a release git flow release start RELEASE
publish the release git flow release publish RELEASE
get a published release git flow release track RELEASE
finish the release git flow release finish RELEASE; git push origin --tags
start a hotfix git flow hotfix start VERSION [BASENAME]
finish the hotfix git flow hotfix finish VERSION

The Original Idea

Cheat sheet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment