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,36 @@
# git notes
> Ajoute ou inspecte des notes d'objets.
> Plus d'informations: <https://git-scm.com/docs/git-notes>.
- Lister toutes les notes et leurs objets rattachés :
`git notes list`
- Lister toutes les notes attaches a un objet donné :
`git notes list [{{object}}]`
- Afficher les notes attachés a un objet donné :
`git notes show [{{object}}]`
- Ajoute une note à un objet donné :
`git notes append {{object}}`
- Ajoute une note à un objet donné, en spécifiant le message :
`git notes append --message="{{message_text}}"`
- Edite une note éxistante :
`git notes edit [{{object}}]`
- Copy la note d'un objet vers un autre :
`git notes copy {{source_object}} {{objet_cible}}`
- Supprime toutes les notes d'un objet spécifié :
`git notes remove {{object}}`