私は 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/
このコマンドを使用する場合、プレフィックスは省略されることに注意してください。