tag start from feature example create crear another git git-flow

start - ¿Hay un comando para deshacer el inicio de la característica git-flow?



git merge (3)

Debido a que git-flow simplemente ajusta la funcionalidad regular de git, ¿qué tal si simplemente eliminamos la nueva rama (suponiendo que no hay cambios allí que desea guardar)?

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

No tengo experiencia con git-flow.

¿Hay un comando para deshacer el git-flow feature start ?


O simplemente usa git-flow:

git flow feature delete your-feature-branch

Tenga en cuenta que la feature/ prefijo se omite al usar este comando


git hf feature cancel -f

Use git hf help y la función git hf feature help para ver las posibilidades.