git*: add French translation (#4619)
This commit is contained in:

committed by
GitHub

parent
6b167bcdd4
commit
8c8314f725
24
pages.fr/common/git-flow.md
Normal file
24
pages.fr/common/git-flow.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# 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}}`
|
Reference in New Issue
Block a user