是否有撤消git-flow功能启动的命令?

时间:2012-08-02 13:26:18

标签: git git-flow

我对git-flow缺乏经验。

是否有撤消git-flow feature start的命令?

3 个答案:

答案 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 helpgit hf feature help查看可能性。