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

25 lines
708 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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}}`