Examples (8)
List all notes and the objects they are attached to
git notes listList all notes attached to a given object (defaults to `HEAD`)
git notes list [object]Show the notes attached to a given object (defaults to `HEAD`)
git notes show [object]Append a note to a specified object (opens the default text editor)
git notes append objectAppend a note to a specified object, specifying the message
git notes append --message="message_text"Copy a note from one object to another
git notes copy source_object target_objectRemove all the notes added to a specified object
git notes remove objectmade by @shridhargupta | data from tldr-pages