
git-notes
List of commands for git-notes:
-
git-notes:tldr:138f5 git-notes: Append a note to a specified object (opens the default text editor).$ git notes append ${object}try on your machineexplain this command
-
git-notes:tldr:27d14 git-notes: Copy a note from one object to another.$ git notes copy ${source_object} ${target_object}try on your machineexplain this command
-
git-notes:tldr:370bf git-notes: List all notes and the objects they are attached to.$ git notes listtry on your machineexplain this command
-
git-notes:tldr:44174 git-notes: Show the notes attached to a given object (defaults to HEAD).$ git notes show [${object}]try on your machineexplain this command
-
git-notes:tldr:75a10 git-notes: Edit an existing note (defaults to HEAD).$ git notes edit [${object}]try on your machineexplain this command
-
git-notes:tldr:a10c1 git-notes: Remove all the notes added to a specified object.$ git notes remove ${object}try on your machineexplain this command
-
git-notes:tldr:dacba git-notes: Append a note to a specified object, specifying the message.$ git notes append --message="${message_text}"try on your machineexplain this command
-
git-notes:tldr:eb8a3 git-notes: List all notes attached to a given object (defaults to HEAD).$ git notes list [${object}]try on your machineexplain this command