我对git-flow缺乏经验。
是否有撤消git-flow feature start
的命令?
答案 0 :(得分:79)
由于git-flow只包含常规git功能,如何简单地删除新分支(假设你没有想要保存的更改)?
$ git checkout master
Switched to branch 'master'
$ git branch -d feature/your-feature-name-here
答案 1 :(得分:32)
或者只使用git-flow:
git flow feature delete your-feature-branch
请注意,使用此命令时会省略feature/
前缀
答案 2 :(得分:-3)
git hf feature cancel -f
使用git hf help
和git hf feature help
查看可能性。