我对 git-flow 没有经验。
有撤消命令git-flow feature start
吗?
由于 git-flow 只是包装了常规的 git 功能,那么简单地删除新分支怎么样(假设您没有要保存的更改)?
$ 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
查看可能性。