有没有一个命令来撤消git-flowfunction启动?
我对git-flow没有经验。
有没有一个命令来撤消git-flow feature start
?
既然git-flow只是包装了常规的gitfunction,那么简单地删除新的分支(假设你没有改变,你想保存)呢?
$ git checkout master Switched to branch 'master' $ git branch -d feature/your-feature-name-here
或者只使用git-flow:
git flow feature delete your-feature-branch
请注意,使用此命令时省略了feature/
前缀
git hf feature cancel -f
使用git hf help
和git hf feature help
查看可能性。