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

@@ -0,0 +1,32 @@
# git show
> Affiche différents types d'objets git (commits, tags, etc.).
> Plus d'informations: <https://git-scm.com/docs/git-show>.
- Afficher des informations sur le dernier commit (hachage, message, modifications et autres métadonnées) :
`git show`
- Affiche les informations du dernier commit :
`git show {{commit}}`
- Affiche les informations associés au tag spécifié :
`git show {{etiquette}}`
- Affiche les informations a propos du 3éme commit en partant du sommet de la branche :
`git show {{branche}}~{{3}}`
- Afficher le message d'un commit sur une seule ligne, en supprimant la sortie diff :
`git show --oneline -s {{commit}}`
- Affiche uniquement la liste des fichiers changés dans un commit :
`git show --stat {{commit}}`
- Afficher le contenu d'un fichier tel qu'il était à une révision donnée (par exemple, branche, tag ou commit) :
`git show {{revision}}:{{chemin/vers/fichier}}`