-
Notifications
You must be signed in to change notification settings - Fork 527
Reference: General
This is an overview of general commands
This is a shortcut to finish the bugfix/feature/hotfix/release branch you are currently on. It will take all the same options as the full command to finish the branch.
For example: If you are on a feature branch named New1 git flow finish -S
will
do the same as git flow feature finish -S New1
This is a shortcut to delete the bugfix/feature/hotfix/release branch you are currently on. It will take all the same options as the full command to delete the branch.
For example: If you are on a feature branch named New1 git flow delete -r
will
do the same as git flow feature delete -r New1
This is a shortcut to publish the bugfix/feature/hotfix/release branch you are currently on.
For example: If you are on a feature branch named New1 git flow publish
will
do the same as git flow feature publish New1
This is a shortcut to rebase the bugfix/feature/hotfix/release/support branch you are currently on.
For example: If you are on a feature branch named New1 git flow rebase -p
will
do the same as git flow feature rebase -p New1