2020-11-10 11:17:06 +00:00
|
|
|
# git notes
|
|
|
|
|
|
|
|
> Ajoute ou inspecte des notes d'objets.
|
2021-10-07 08:37:39 +01:00
|
|
|
> Plus d'informations : <https://git-scm.com/docs/git-notes>.
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Lister toutes les notes et leurs objets rattachés :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
`git notes list`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Lister toutes les notes attachées à un objet donné :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-06-23 01:34:03 +01:00
|
|
|
`git notes list [{{objet}}]`
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Afficher les notes attachées à un objet donné :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-06-23 01:34:03 +01:00
|
|
|
`git notes show [{{objet}}]`
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Ajoute une note à un objet donné :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-06-23 01:34:03 +01:00
|
|
|
`git notes append {{objet}}`
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Ajoute une note à un objet donné, en spécifiant le message :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-06-23 01:34:03 +01:00
|
|
|
`git notes append --message="{{texte_du_message}}"`
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Édite une note existante :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-06-23 01:34:03 +01:00
|
|
|
`git notes edit [{{objet}}]`
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Copie la note d'un objet vers un autre :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-06-23 01:34:03 +01:00
|
|
|
`git notes copy {{objet_source}} {{objet_cible}}`
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Supprime toutes les notes d'un objet donné :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-06-23 01:34:03 +01:00
|
|
|
`git notes remove {{objet}}`
|