Skip to content

Instantly share code, notes, and snippets.

@fixlr
Created February 17, 2011 15:24
Show Gist options
  • Save fixlr/831916 to your computer and use it in GitHub Desktop.
Save fixlr/831916 to your computer and use it in GitHub Desktop.
usage: git flow <subcommand>
Available subcommands are:
init Initialize a new git repo with support for the branching model.
feature Manage your feature branches.
release Manage your release branches.
hotfix Manage your hotfix branches.
Try 'git flow <subcommand> help' for details.
usage: git flow feature [list] [-v]
git flow feature start [-F] <name> [<base>]
git flow feature finish [-rFk] <name|nameprefix>
git flow feature publish <name>
git flow feature track <name>
git flow feature diff [<name|nameprefix>]
git flow feature rebase [-i] [<name|nameprefix>]
git flow feature checkout [<name|nameprefix>]
git flow feature pull <remote> [<name>]
usage: git flow release [list] [-v]
git flow release start [-F] <version>
git flow release finish [-Fsumpk] <version>
git flow release publish <name>
git flow release track <name>
usage: git flow hotfix [list] [-v]
git flow hotfix start [-F] <version> [<base>]
git flow hotfix finish [-Fsumpk] <version>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment