tldr/pages.fr/common/git-show-branch.md

37 lines
1.0 KiB
Markdown
Raw Normal View History

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