tldr/pages.fr/common/git-flow.md

25 lines
727 B
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# 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 une fonctionnalité publiée par un autre utilisateur :
`git flow feature pull origin {{feature}}`