git*: add French translation (#4619)

This commit is contained in:
CARE-COLIN Thibaut
2020-11-10 12:17:06 +01:00
committed by GitHub
parent 6b167bcdd4
commit 8c8314f725
72 changed files with 1499 additions and 41 deletions

View File

@@ -9,23 +9,23 @@
- Envoie les changements locaux d'une branche spécifique vers sa contrepartie distante :
`git push {{remote_name}} {{local_branch}}`
`git push {{nom_distant}} {{local_branch}}`
- Publie la branche courante vers un dépôt distant, crée le nom de la branche distante :
`git push {{remote_name}} -u {{remote_branch}}`
`git push {{nom_distant}} -u {{branche_distante}}`
- Envoi les changements locaux sur toutes les branches locales vers leur contrepartie sur le dépôt distant :
`git push --all {{remote_name}}`
`git push --all {{nom_distant}}`
- Supprime une branche dans un dépôt distant :
`git push {{remote_name}} --delete {{remote_branch}}`
`git push {{nom_distant}} --delete {{branche_distante}}`
- Supprime les branches distantes qui n'ont pas de contrepartie locale :
`git push --prune {{remote_name}}`
`git push --prune {{nom_distant}}`
- Publie les tags qui ne sont pas sur le dépôt distant :