git flow hotfix

Manage your hotfix branches

Synopsis

git flow hotfix [-h|--help]
git flow hotfix list [-v|--verbose]
git flow hotfix start [-F|--fetch] version [base]
git flow hotfix finish [-F|--fetch] [-p|--push] [-k|--keep]
                  [-n|--notag] [-m MESSAGE|--message MESSAGE]
                  [-s|--sign] [-u SIGNINGKEY|--signingkey SIGNINGKEY]
                  [version]
git flow hotfix publish [version]

git flow hotfix list - List hotfix branches

Synopsis
git flow hotfix list [-v|--verbose]
Description

List all existing hotfix branches in the local repository.

Options
-h, --help Show help message and exit.
-v, --verbose Be verbose (more output).

git flow hotfix start - Start a new hotfix branch

Synopsis
git flow hotfix start [-F|--fetch] version [base]
Description

Start new hotfix version, optionally basing it on base instead of master.

Options
-h, --help Show help message and exit.
-F, --fetch Fetch from origin before performing local operation.

git flow hotfix finish - Finish a hotfix branch

Synopsis
git flow hotfix finish [-F|--fetch] [-p|--push] [-k|--keep]
                  [-n|--notag] [-m MESSAGE|--message MESSAGE]
                  [-s|--sign] [-u SIGNINGKEY|--signingkey SIGNINGKEY]
                  [version]
Description

Finish an existing hotfix branch.

Positional arguments
version:Version of the hotfix branch to publish. Defaults to the current branch, if it is a hotfix branch.
Options
-h, --help Show help message and exit.
-F, --fetch Fetch from origin before performing local operation.
-p, --push Push to origin after performing finish.
-k, --keep Keep branch after performing finish.
Tagging Options
-n, --notag Don’t tag this release.
-m MESSAGE, --message MESSAGE
 Use the given tag message.
-s, --sign Sign the release tag cryptographically.
-u SIGNINGKEY, --signingkey SIGNINGKEY
 Use the given GPG-key for the digital signature instead of the default git uses (implies -s).

git flow hotfix publish - Publish a hotfix branch to origin

Synopsis
git flow hotfix publish [version]
Description

Publish a hotfix branch, with the given version, on origin (or whatever is configured as remote for gitflow.)

Positional arguments
version:Version of the hotfix branch to publish. Defaults to the current branch, if it is a hotfix branch.
Options
-h, --help Show help message and exit.

See also

git flow(1)

Project Homepage https://github.com/htgoebel/gitflow