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

25 lines
709 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 colletion d'extentions Git pour procurer des opperation de registre supplementaires.
> 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é, le merger dans la branche `develop` puis suprimmer :
`git flow feature finish {{feature}}`
- Publier une fonctionalité sur le serveur distant :
`git flow feature publish {{feature}}`
- Recupérer un fonctionalité publiée par un autre utilisateur :
`git flow feature pull origin {{feature}}`