Is there a command to undo git-flow feature start?
GitGit FlowGit Problem Overview
I'm inexperienced with git-flow.
Is there a command to undo git-flow feature start
?
Git Solutions
Solution 1 - Git
Since git-flow just wraps regular git functionality, how about simply deleting the new branch (assuming you have no changes in there you want saved)?
$ git checkout master
Switched to branch 'master'
$ git branch -d feature/your-feature-name-here
Solution 2 - Git
Or just use git-flow:
git flow feature delete your-feature-branch
Note that the feature/
prefix is omitted when using this command
Solution 3 - Git
git hf feature cancel -f
Use git hf help
and git hf feature help
to see the possibilities.