我没有使用git-flow的经验。
是否有撤消git-flow feature start的命令
发布于 2012-08-02 21:30:49
由于git-flow只包装了常规的git功能,那么简单地删除新的分支如何(假设您没有想要保存的更改)?
$ git checkout master
Switched to branch 'master'
$ git branch -d feature/your-feature-name-here发布于 2012-09-18 23:54:26
或者只使用git-flow:
git flow feature delete your-feature-branch请注意,使用此命令时将省略feature/前缀
发布于 2013-11-05 22:43:36
git hf feature cancel -f使用git hf help和git hf feature help查看可能性。
https://stackoverflow.com/questions/11778413
复制相似问题