Skip to content

Git Flow

devconker22 edited this page Sep 19, 2023 · 10 revisions

Este repo está destinado a enseñar los comandos básicos de git-flow.

Git

Comandos git para copiar y sincronizar un repo remoto hacia local. Se requiere instalar gitflow.

git clone https://github.com/helttonrl/exercism.git
git checkout develop
git pull origin develop
git branch -a
git flow init 
git flow feature start "name"
git flow feature finish "name"
git flow feature publish "name"
git flow hotfix start "name"
git flow release start "name"

Más comandos de gitflow

git flow feature [list] [-v]
git flow feature start [-F] <name> [<base>]
git flow feature finish [-rFk] <name|nameprefix>
git flow feature publish <name>
git flow feature track <name>
git flow feature diff [<name|nameprefix>]
git flow feature rebase [-i] [<name|nameprefix>]
git flow feature checkout [<name|nameprefix>]
git flow feature pull <remote> [<name>]

Clone this wiki locally