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