]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/git-notes.txt
builtin-notes: Add "append" subcommand for appending to note objects
[thirdparty/git.git] / Documentation / git-notes.txt
1 git-notes(1)
2 ============
3
4 NAME
5 ----
6 git-notes - Add/inspect object notes
7
8 SYNOPSIS
9 --------
10 [verse]
11 'git notes' [list [<object>]]
12 'git notes' add [-f] [-F <file> | -m <msg>] [<object>]
13 'git notes' append [-F <file> | -m <msg>] [<object>]
14 'git notes' edit [-F <file> | -m <msg>] [<object>]
15 'git notes' show [<object>]
16 'git notes' remove [<object>]
17 'git notes' prune
18
19
20 DESCRIPTION
21 -----------
22 This command allows you to add/remove notes to/from objects, without
23 changing the objects themselves.
24
25 A typical use of notes is to extend a commit message without having
26 to change the commit itself. Such commit notes can be shown by `git log`
27 along with the original commit message. To discern these notes from the
28 message stored in the commit object, the notes are indented like the
29 message, after an unindented line saying "Notes:".
30
31 To disable notes, you have to set the config variable core.notesRef to
32 the empty string. Alternatively, you can set it to a different ref,
33 something like "refs/notes/bugzilla". This setting can be overridden
34 by the environment variable "GIT_NOTES_REF".
35
36
37 SUBCOMMANDS
38 -----------
39
40 list::
41 List the notes object for a given object. If no object is
42 given, show a list of all note objects and the objects they
43 annotate (in the format "<note object> <annotated object>").
44 This is the default subcommand if no subcommand is given.
45
46 add::
47 Add notes for a given object (defaults to HEAD). Abort if the
48 object already has notes, abort. (use `-f` to overwrite an
49 existing note).
50
51 append::
52 Append to the notes of an existing object (defaults to HEAD).
53 Creates a new notes object if needed.
54
55 edit::
56 Edit the notes for a given object (defaults to HEAD).
57
58 show::
59 Show the notes for a given object (defaults to HEAD).
60
61 remove::
62 Remove the notes for a given object (defaults to HEAD).
63 This is equivalent to specifying an empty note message to
64 the `edit` subcommand.
65
66 prune::
67 Remove all notes for non-existing/unreachable objects.
68
69 OPTIONS
70 -------
71 -f::
72 --force::
73 When adding notes to an object that already has notes,
74 overwrite the existing notes (instead of aborting).
75
76 -m <msg>::
77 --message=<msg>::
78 Use the given note message (instead of prompting).
79 If multiple `-m` options are given, their values
80 are concatenated as separate paragraphs.
81
82 -F <file>::
83 --file=<file>::
84 Take the note message from the given file. Use '-' to
85 read the note message from the standard input.
86
87
88 Author
89 ------
90 Written by Johannes Schindelin <johannes.schindelin@gmx.de> and
91 Johan Herland <johan@herland.net>
92
93 Documentation
94 -------------
95 Documentation by Johannes Schindelin and Johan Herland
96
97 GIT
98 ---
99 Part of the linkgit:git[7] suite