multiple pages: fix French colon punctuation (#5152)

This commit is contained in:
bl-ue
2021-01-30 12:03:18 -05:00
committed by GitHub
parent a52007380f
commit 5f1ef5bee7
147 changed files with 824 additions and 825 deletions

View File

@@ -1,36 +1,36 @@
# git show-branch
> Affiche les branches et leurs commits.
> Plus d'informations : <https://git-scm.com/docs/git-show-branch>.
> Plus d'informations : <https://git-scm.com/docs/git-show-branch>.
- Affiche un resumé du dernier commit dans la branche :
- Affiche un resumé du dernier commit dans la branche :
`git show-branch {{nom_de_branche}}|ref|commit}}`
- Comparer des commits avec plusieurs commits ou branches :
- Comparer des commits avec plusieurs commits ou branches :
`git show-branch {{nom_de_branche}}|ref|commit}}`
- Comparer toutes les branches distantes :
- Comparer toutes les branches distantes :
`git show-branch --remotes`
- Comparer le branche locale avec la branche distante :
- Comparer le branche locale avec la branche distante :
`git show-branch --all`
- Lister les derniers commits sur toutes les branches :
- Lister les derniers commits sur toutes les branches :
`git show-branch --all --list`
- Compareer une branche spécifique a la branche courante :
- Compareer une branche spécifique a la branche courante :
`git show-branch --current {{commit|branch_name|ref}}`
- Afficher le nom du commit au lieu du nom relatif :
- Afficher le nom du commit au lieu du nom relatif :
`git show-branch --sha1-name --current {{current|branch_name|ref}}`
- Continuez l'affichage d'un certain nombre de commits au-delà de l'ancêtre commun :
- Continuez l'affichage d'un certain nombre de commits au-delà de l'ancêtre commun :
`git show-branch --more {{5}} {{commit|branch_name|ref}} {{commit|branch_name|ref}} {{...}}`