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

ati*_*n25 52 git git-flow

我对git-flow缺乏经验.

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

Gre*_*ins 85

由于git-flow只包含常规git功能,如何简单地删除新分支(假设你没有想要保存的更改)?

$ git checkout master
Switched to branch 'master'
$ git branch -d feature/your-feature-name-here
Run Code Online (Sandbox Code Playgroud)


Pet*_*oes 32

或者只使用git-flow:

git flow feature delete your-feature-branch
Run Code Online (Sandbox Code Playgroud)

请注意,feature/使用此命令时会省略前缀

  • 我的Git-flow副本不包含'delete'作为'git flow feature'命令的选项. (4认同)