Next: Submodules, Previous: Tagging, Up: Miscellaneous [Contents][Index]
Also see the git-notes(1) manpage.
magit-notes
)This transient prefix command binds the following suffix commands along with the appropriate infix arguments and displays them in a temporary buffer until a suffix is invoked.
magit-notes-edit
)Edit the note attached to a commit, defaulting to the commit at point.
By default use the value of Git variable core.notesRef
or
"refs/notes/commits" if that is undefined.
magit-notes-remove
)Remove the note attached to a commit, defaulting to the commit at point.
By default use the value of Git variable core.notesRef
or
"refs/notes/commits" if that is undefined.
magit-notes-prune
)Remove notes about unreachable commits.
It is possible to merge one note ref into another. That may result in conflicts which have to resolved in the temporary worktree ".git/NOTES_MERGE_WORKTREE".
magit-notes-merge
)Merge the notes of a ref read from the user into the current notes
ref. The current notes ref is the value of Git variable
core.notesRef
or "refs/notes/commits" if that is undefined.
When a notes merge is in progress then the transient features the following suffix commands, instead of those listed above.
magit-notes-merge-commit
)Commit the current notes ref merge, after manually resolving conflicts.
magit-notes-merge-abort
)Abort the current notes ref merge.
The following variables control what notes reference magit-notes-*
,
git notes
and git show
act on and display. Both the local and global
values are displayed and can be modified.
This variable specifies the notes ref that is displayed by default and which commands act on by default.
This variable specifies additional notes ref to be displayed in
addition to the ref specified by core.notesRef
. It can have
multiple values and may end with *
to display all refs in the
refs/notes/
namespace (or **
if some names contain slashes).
Next: Submodules, Previous: Tagging, Up: Miscellaneous [Contents][Index]