1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:22:09 +02:00
tldr/pages.fr/common/git-flow.md
2021-05-01 12:49:31 -04:00

726 B

git flow

Une collection d'extensions Git pour procurer des opérations supplémentaires sur les dépôts. Plus d'informations : https://github.com/nvie/gitflow.

  • Initialiser dans un registre Git existant :

git flow init

  • Commencer le travail sur une fonctionnalité basé sur la branche develop :

git flow feature start {{feature}}

  • Terminer le travail sur une branche de fonctionnalité, la fusionner dans la branche develop puis la supprimer :

git flow feature finish {{feature}}

  • Publier une fonctionnalité sur le serveur distant :

git flow feature publish {{feature}}

  • Récupérer un fonctionnalité publiée par un autre utilisateur :

git flow feature pull origin {{feature}}