Pues… si queremos crear git-flow en un repositorio que tenemos en nuestro MacOS, a priori no estará instalado y al ejecutar:
git-flow init
nos responderá:
bash: git-flow: command not found
Para instalar git-flow hay que ejecutar el siguiente comando con brew (cómo instalar brew en macOS).
brew install git-flow
Y a funcionar.
Para iniciar git-flow escribimos en el directorio raíz de nuestro proyecto:
git-flow init
Y en los mensajes que nos va preguntando podemos ir pulsando Enter para dejar los nombres por defecto:
Which branch should be used for bringing forth production releases?
– master
Branch name for production releases: [master]
Branch name for «next release» development: [develop]How to name your supporting branch prefixes?
Feature branches? [feature/]
Release branches? [release/]
Hotfix branches? [hotfix/]
Support branches? [support/]
Version tag prefix? []
Saludos 🙂