web-dev-qa-db-ja.com

git-flow機能の開始を取り消すコマンドはありますか?

私はgit-flowに不慣れです。

元に戻すコマンドはありますかgit-flow feature start

50
atian25

Git-flowは通常のgit機能をラップするだけなので、新しいブランチを削除するだけではどうでしょう(保存したい変更がないと仮定して)。

$ git checkout master
Switched to branch 'master'
$ git branch -d feature/your-feature-name-here
81
Greg Haskins

または、git-flowを使用します。

git flow feature delete your-feature-branch

このコマンドを使用する場合、feature/プレフィックスは省略されることに注意してください。

32