Resumen de comandos GitFLow

p

Inicio

Iniciar git flow

git-flow init

Feature

imgfeature

Crear feature (se debe realizar git checkout develop antes)

git flow feature start {nombre feature}

Finalizar freature

git flow feature finish {nombre feature}

Publicar feature

git flow feature publish {nombre feature}

Obtener feature

git flow feature pull origin {nombre feature}

Release

imgrelease

Comenzar release

git flow release start {NOMBRE RELEASE} [BASE]

Publicar release

git flow release publish {NOMBRE RELEASE}

Track release

git flow release track {NOMBRE RELEASE}

Finalizar y publicar release

git flow release finish {NOMBRE RELEASE}

Hotfix

imghotfix

Comenzar hotfix

git flow hotfix start {NOMBRE VERSION} [BASENAME]

Finalizar hotfix

git flow hotfix finish {NOMBRE VERSION}

Tag

Crear TAG

git tag -a v1.0 -m "Comentario que se le quiera dar"

Ver TAG

git show v1.0

Publicar TAG

git push origin  v1.0

Ver lista de TAG

git tag

Otros

Limpiar repositorio local

git remote update origin --prune

Mostrar lista de ramas

git branch -a