-
To list/start/finish feature branches, use:
git flow feature git flow feature start <name> [<base>] git flow feature finish <name>For feature branches, the
<base>arg must be a commit ondevelop. -
To push/pull a feature branch to the remote repository, use:
git flow feature publish <name> git flow feature pull <remote> <name> -
To list/start/finish release branches, use:
git flow release git flow release start <release> [<base>] git flow release finish <release>For release branches, the
<base>arg must be a commit ondevelop. -
To list/start/finish hotfix branches, use:
git flow hotfix git flow hotfix start <release> [<base>] git flow hotfix finish <release>For hotfix branches, the
<base>arg must be a commit onmaster. -
To list/start support branches, use:
git flow support git flow support start <release> <base>For support branches, the
<base>arg must be a commit onmaster.
floranpagliai/Falcon
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|