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,16 @@
# git cat-file
> Fournir des informations sur le contenu ou le type et la taille des objets du référentiel git.
> Plus d'informations: <https://git-scm.com/docs/git-cat-file>.
- Obtenir la taill [s] du commit HEAD en octets :
`git cat-file -s HEAD`
- Obtenir le type [t] (blob, tree, commit, tag) d'un objet git spécifié :
`git cat-file -t {{8c442dc3}}`
- Affiche le contenu [p] d'un objet git basé sur son type :
`git cat-file -p {{HEAD~2}}`