Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 1 | git-notes(1) |
| 2 | ============ |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Jonathan Nieder | 1a3eb9a | 2010-05-08 22:37:21 -0500 | [diff] [blame] | 6 | git-notes - Add or inspect object notes |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
| 10 | [verse] |
Johan Herland | e397421 | 2010-02-13 22:28:30 +0100 | [diff] [blame] | 11 | 'git notes' [list [<object>]] |
Johan Herland | 0691cff | 2010-02-13 22:28:36 +0100 | [diff] [blame] | 12 | 'git notes' add [-f] [-F <file> | -m <msg> | (-c | -C) <object>] [<object>] |
Thomas Rast | 160baa0 | 2010-03-12 18:04:31 +0100 | [diff] [blame] | 13 | 'git notes' copy [-f] ( --stdin | <from-object> <to-object> ) |
Johan Herland | 0691cff | 2010-02-13 22:28:36 +0100 | [diff] [blame] | 14 | 'git notes' append [-F <file> | -m <msg> | (-c | -C) <object>] [<object>] |
Johan Herland | aaec9bc | 2010-02-13 22:28:34 +0100 | [diff] [blame] | 15 | 'git notes' edit [<object>] |
Johan Herland | e397421 | 2010-02-13 22:28:30 +0100 | [diff] [blame] | 16 | 'git notes' show [<object>] |
Johan Herland | 00f0306 | 2010-11-09 22:49:50 +0100 | [diff] [blame] | 17 | 'git notes' merge [-v | -q] [-s <strategy> ] <notes_ref> |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 18 | 'git notes' merge --commit [-v | -q] |
| 19 | 'git notes' merge --abort [-v | -q] |
Junio C Hamano | 4653801 | 2011-05-18 16:44:30 -0700 | [diff] [blame] | 20 | 'git notes' remove [--ignore-missing] [--stdin] [<object>...] |
Michael J Gruber | a9f2adf | 2010-05-14 23:42:07 +0200 | [diff] [blame] | 21 | 'git notes' prune [-n | -v] |
Johan Herland | 618cd75 | 2010-11-09 22:49:57 +0100 | [diff] [blame] | 22 | 'git notes' get-ref |
Johan Herland | e397421 | 2010-02-13 22:28:30 +0100 | [diff] [blame] | 23 | |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 24 | |
| 25 | DESCRIPTION |
| 26 | ----------- |
Jonathan Nieder | 1a3eb9a | 2010-05-08 22:37:21 -0500 | [diff] [blame] | 27 | Adds, removes, or reads notes attached to objects, without touching |
| 28 | the objects themselves. |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 29 | |
Jonathan Nieder | 0097971 | 2010-05-08 22:23:58 -0500 | [diff] [blame] | 30 | By default, notes are saved to and read from `refs/notes/commits`, but |
| 31 | this default can be overridden. See the OPTIONS, CONFIGURATION, and |
| 32 | ENVIRONMENT sections below. If this ref does not exist, it will be |
| 33 | quietly created when it is first needed to store a note. |
| 34 | |
Jonathan Nieder | 1a3eb9a | 2010-05-08 22:37:21 -0500 | [diff] [blame] | 35 | A typical use of notes is to supplement a commit message without |
| 36 | changing the commit itself. Notes can be shown by 'git log' along with |
| 37 | the original commit message. To distinguish these notes from the |
Johan Herland | 7d54117 | 2010-02-13 22:28:29 +0100 | [diff] [blame] | 38 | message stored in the commit object, the notes are indented like the |
Thomas Rast | 894a9d3 | 2010-03-12 18:04:26 +0100 | [diff] [blame] | 39 | message, after an unindented line saying "Notes (<refname>):" (or |
Jonathan Nieder | 9eb3f81 | 2010-05-08 22:19:35 -0500 | [diff] [blame] | 40 | "Notes:" for `refs/notes/commits`). |
Johan Herland | 7d54117 | 2010-02-13 22:28:29 +0100 | [diff] [blame] | 41 | |
Philip Oakley | e39b307 | 2012-10-21 22:34:09 +0100 | [diff] [blame] | 42 | Notes can also be added to patches prepared with `git format-patch` by |
| 43 | using the `--notes` option. Such notes are added as a patch commentary |
| 44 | after a three dash separator line. |
| 45 | |
Jonathan Nieder | 66c4c32 | 2010-05-08 22:32:24 -0500 | [diff] [blame] | 46 | To change which notes are shown by 'git log', see the |
| 47 | "notes.displayRef" configuration in linkgit:git-log[1]. |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 48 | |
Jonathan Nieder | c5ce183 | 2010-05-08 22:33:28 -0500 | [diff] [blame] | 49 | See the "notes.rewrite.<command>" configuration for a way to carry |
| 50 | notes across commands that rewrite commits. |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 51 | |
| 52 | |
| 53 | SUBCOMMANDS |
| 54 | ----------- |
| 55 | |
Johan Herland | e397421 | 2010-02-13 22:28:30 +0100 | [diff] [blame] | 56 | list:: |
| 57 | List the notes object for a given object. If no object is |
| 58 | given, show a list of all note objects and the objects they |
| 59 | annotate (in the format "<note object> <annotated object>"). |
| 60 | This is the default subcommand if no subcommand is given. |
| 61 | |
Johan Herland | 7aa4754 | 2010-02-13 22:28:32 +0100 | [diff] [blame] | 62 | add:: |
| 63 | Add notes for a given object (defaults to HEAD). Abort if the |
Johan Herland | 84a7e35 | 2011-03-30 02:02:55 +0200 | [diff] [blame] | 64 | object already has notes (use `-f` to overwrite existing notes). |
| 65 | However, if you're using `add` interactively (using an editor |
| 66 | to supply the notes contents), then - instead of aborting - |
| 67 | the existing notes will be opened in the editor (like the `edit` |
| 68 | subcommand). |
Johan Herland | 7aa4754 | 2010-02-13 22:28:32 +0100 | [diff] [blame] | 69 | |
Johan Herland | e73bbd9 | 2010-02-13 22:28:38 +0100 | [diff] [blame] | 70 | copy:: |
| 71 | Copy the notes for the first object onto the second object. |
| 72 | Abort if the second object already has notes, or if the first |
Michael J Gruber | 48716a2 | 2010-03-04 15:31:17 +0100 | [diff] [blame] | 73 | object has none (use -f to overwrite existing notes to the |
Johan Herland | e73bbd9 | 2010-02-13 22:28:38 +0100 | [diff] [blame] | 74 | second object). This subcommand is equivalent to: |
| 75 | `git notes add [-f] -C $(git notes list <from-object>) <to-object>` |
Thomas Rast | 160baa0 | 2010-03-12 18:04:31 +0100 | [diff] [blame] | 76 | + |
Jeff King | 6cf378f | 2012-04-26 04:51:57 -0400 | [diff] [blame] | 77 | In `--stdin` mode, take lines in the format |
Thomas Rast | 160baa0 | 2010-03-12 18:04:31 +0100 | [diff] [blame] | 78 | + |
| 79 | ---------- |
| 80 | <from-object> SP <to-object> [ SP <rest> ] LF |
| 81 | ---------- |
| 82 | + |
| 83 | on standard input, and copy the notes from each <from-object> to its |
| 84 | corresponding <to-object>. (The optional `<rest>` is ignored so that |
| 85 | the command can read the input given to the `post-rewrite` hook.) |
Johan Herland | e73bbd9 | 2010-02-13 22:28:38 +0100 | [diff] [blame] | 86 | |
Johan Herland | 2347fae | 2010-02-13 22:28:33 +0100 | [diff] [blame] | 87 | append:: |
| 88 | Append to the notes of an existing object (defaults to HEAD). |
| 89 | Creates a new notes object if needed. |
| 90 | |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 91 | edit:: |
Johan Herland | 7d54117 | 2010-02-13 22:28:29 +0100 | [diff] [blame] | 92 | Edit the notes for a given object (defaults to HEAD). |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 93 | |
| 94 | show:: |
Johan Herland | 7d54117 | 2010-02-13 22:28:29 +0100 | [diff] [blame] | 95 | Show the notes for a given object (defaults to HEAD). |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 96 | |
Johan Herland | 00f0306 | 2010-11-09 22:49:50 +0100 | [diff] [blame] | 97 | merge:: |
| 98 | Merge the given notes ref into the current notes ref. |
| 99 | This will try to merge the changes made by the given |
| 100 | notes ref (called "remote") since the merge-base (if |
| 101 | any) into the current notes ref (called "local"). |
| 102 | + |
| 103 | If conflicts arise and a strategy for automatically resolving |
| 104 | conflicting notes (see the -s/--strategy option) is not given, |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 105 | the "manual" resolver is used. This resolver checks out the |
| 106 | conflicting notes in a special worktree (`.git/NOTES_MERGE_WORKTREE`), |
| 107 | and instructs the user to manually resolve the conflicts there. |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 108 | When done, the user can either finalize the merge with |
| 109 | 'git notes merge --commit', or abort the merge with |
| 110 | 'git notes merge --abort'. |
Johan Herland | 00f0306 | 2010-11-09 22:49:50 +0100 | [diff] [blame] | 111 | |
Johan Herland | 92b3385 | 2010-02-13 22:28:25 +0100 | [diff] [blame] | 112 | remove:: |
Junio C Hamano | c3ab1a8 | 2011-05-18 15:44:37 -0700 | [diff] [blame] | 113 | Remove the notes for given objects (defaults to HEAD). When |
| 114 | giving zero or one object from the command line, this is |
| 115 | equivalent to specifying an empty note message to |
Johan Herland | 92b3385 | 2010-02-13 22:28:25 +0100 | [diff] [blame] | 116 | the `edit` subcommand. |
| 117 | |
Johan Herland | d6576e1 | 2010-02-13 22:28:28 +0100 | [diff] [blame] | 118 | prune:: |
| 119 | Remove all notes for non-existing/unreachable objects. |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 120 | |
Johan Herland | 618cd75 | 2010-11-09 22:49:57 +0100 | [diff] [blame] | 121 | get-ref:: |
| 122 | Print the current notes ref. This provides an easy way to |
| 123 | retrieve the current notes ref (e.g. from scripts). |
| 124 | |
Johan Herland | d9246d4 | 2009-10-09 12:22:01 +0200 | [diff] [blame] | 125 | OPTIONS |
| 126 | ------- |
Johan Herland | 7aa4754 | 2010-02-13 22:28:32 +0100 | [diff] [blame] | 127 | -f:: |
| 128 | --force:: |
| 129 | When adding notes to an object that already has notes, |
| 130 | overwrite the existing notes (instead of aborting). |
| 131 | |
Johan Herland | d9246d4 | 2009-10-09 12:22:01 +0200 | [diff] [blame] | 132 | -m <msg>:: |
Johan Herland | ba20f15 | 2010-02-13 22:28:31 +0100 | [diff] [blame] | 133 | --message=<msg>:: |
Johan Herland | d9246d4 | 2009-10-09 12:22:01 +0200 | [diff] [blame] | 134 | Use the given note message (instead of prompting). |
Johan Herland | cd067d3 | 2010-02-13 22:28:20 +0100 | [diff] [blame] | 135 | If multiple `-m` options are given, their values |
| 136 | are concatenated as separate paragraphs. |
Jonathan Nieder | 8d6888e | 2010-05-08 22:21:34 -0500 | [diff] [blame] | 137 | Lines starting with `#` and empty lines other than a |
| 138 | single line between paragraphs will be stripped out. |
Johan Herland | d9246d4 | 2009-10-09 12:22:01 +0200 | [diff] [blame] | 139 | |
| 140 | -F <file>:: |
Johan Herland | ba20f15 | 2010-02-13 22:28:31 +0100 | [diff] [blame] | 141 | --file=<file>:: |
Johan Herland | d9246d4 | 2009-10-09 12:22:01 +0200 | [diff] [blame] | 142 | Take the note message from the given file. Use '-' to |
| 143 | read the note message from the standard input. |
Jonathan Nieder | 8d6888e | 2010-05-08 22:21:34 -0500 | [diff] [blame] | 144 | Lines starting with `#` and empty lines other than a |
| 145 | single line between paragraphs will be stripped out. |
Johan Herland | d9246d4 | 2009-10-09 12:22:01 +0200 | [diff] [blame] | 146 | |
Johan Herland | 0691cff | 2010-02-13 22:28:36 +0100 | [diff] [blame] | 147 | -C <object>:: |
| 148 | --reuse-message=<object>:: |
Michael J Gruber | 11432bb | 2011-08-25 12:26:37 +0200 | [diff] [blame] | 149 | Take the given blob object (for example, another note) as the |
| 150 | note message. (Use `git notes copy <object>` instead to |
| 151 | copy notes between objects.) |
Johan Herland | 0691cff | 2010-02-13 22:28:36 +0100 | [diff] [blame] | 152 | |
| 153 | -c <object>:: |
| 154 | --reedit-message=<object>:: |
| 155 | Like '-C', but with '-c' the editor is invoked, so that |
| 156 | the user can further edit the note message. |
Johan Herland | d9246d4 | 2009-10-09 12:22:01 +0200 | [diff] [blame] | 157 | |
Thomas Rast | dcf783a | 2010-03-12 18:04:35 +0100 | [diff] [blame] | 158 | --ref <ref>:: |
Jonathan Nieder | 0097971 | 2010-05-08 22:23:58 -0500 | [diff] [blame] | 159 | Manipulate the notes tree in <ref>. This overrides |
| 160 | 'GIT_NOTES_REF' and the "core.notesRef" configuration. The ref |
Thomas Rast | dcf783a | 2010-03-12 18:04:35 +0100 | [diff] [blame] | 161 | is taken to be in `refs/notes/` if it is not qualified. |
| 162 | |
Junio C Hamano | 2d370d2 | 2011-05-18 16:02:58 -0700 | [diff] [blame] | 163 | --ignore-missing:: |
| 164 | Do not consider it an error to request removing notes from an |
| 165 | object that does not have notes attached to it. |
| 166 | |
Junio C Hamano | 4653801 | 2011-05-18 16:44:30 -0700 | [diff] [blame] | 167 | --stdin:: |
| 168 | Also read the object names to remove notes from from the standard |
| 169 | input (there is no reason you cannot combine this with object |
| 170 | names from the command line). |
| 171 | |
Michael J Gruber | a9f2adf | 2010-05-14 23:42:07 +0200 | [diff] [blame] | 172 | -n:: |
René Scharfe | e93487d | 2010-08-06 22:28:09 +0200 | [diff] [blame] | 173 | --dry-run:: |
Michael J Gruber | a9f2adf | 2010-05-14 23:42:07 +0200 | [diff] [blame] | 174 | Do not remove anything; just report the object names whose notes |
| 175 | would be removed. |
| 176 | |
Johan Herland | 00f0306 | 2010-11-09 22:49:50 +0100 | [diff] [blame] | 177 | -s <strategy>:: |
| 178 | --strategy=<strategy>:: |
| 179 | When merging notes, resolve notes conflicts using the given |
| 180 | strategy. The following strategies are recognized: "manual" |
Johan Herland | a6a0909 | 2010-11-15 00:57:17 +0100 | [diff] [blame] | 181 | (default), "ours", "theirs", "union" and "cat_sort_uniq". |
Johan Herland | 00f0306 | 2010-11-09 22:49:50 +0100 | [diff] [blame] | 182 | See the "NOTES MERGE STRATEGIES" section below for more |
| 183 | information on each notes merge strategy. |
| 184 | |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 185 | --commit:: |
| 186 | Finalize an in-progress 'git notes merge'. Use this option |
| 187 | when you have resolved the conflicts that 'git notes merge' |
| 188 | stored in .git/NOTES_MERGE_WORKTREE. This amends the partial |
| 189 | merge commit created by 'git notes merge' (stored in |
| 190 | .git/NOTES_MERGE_PARTIAL) by adding the notes in |
| 191 | .git/NOTES_MERGE_WORKTREE. The notes ref stored in the |
| 192 | .git/NOTES_MERGE_REF symref is updated to the resulting commit. |
| 193 | |
| 194 | --abort:: |
| 195 | Abort/reset a in-progress 'git notes merge', i.e. a notes merge |
| 196 | with conflicts. This simply removes all files related to the |
| 197 | notes merge. |
| 198 | |
Johan Herland | 00f0306 | 2010-11-09 22:49:50 +0100 | [diff] [blame] | 199 | -q:: |
| 200 | --quiet:: |
| 201 | When merging notes, operate quietly. |
| 202 | |
Michael J Gruber | a9f2adf | 2010-05-14 23:42:07 +0200 | [diff] [blame] | 203 | -v:: |
René Scharfe | e93487d | 2010-08-06 22:28:09 +0200 | [diff] [blame] | 204 | --verbose:: |
Johan Herland | 00f0306 | 2010-11-09 22:49:50 +0100 | [diff] [blame] | 205 | When merging notes, be more verbose. |
| 206 | When pruning notes, report all object names whose notes are |
| 207 | removed. |
Michael J Gruber | a9f2adf | 2010-05-14 23:42:07 +0200 | [diff] [blame] | 208 | |
Thomas Rast | 66d6819 | 2010-03-12 18:04:37 +0100 | [diff] [blame] | 209 | |
Jonathan Nieder | 9eb3f81 | 2010-05-08 22:19:35 -0500 | [diff] [blame] | 210 | DISCUSSION |
| 211 | ---------- |
| 212 | |
| 213 | Commit notes are blobs containing extra information about an object |
| 214 | (usually information to supplement a commit's message). These blobs |
| 215 | are taken from notes refs. A notes ref is usually a branch which |
| 216 | contains "files" whose paths are the object names for the objects |
| 217 | they describe, with some directory separators included for performance |
| 218 | reasons footnote:[Permitted pathnames have the form |
| 219 | 'ab'`/`'cd'`/`'ef'`/`'...'`/`'abcdef...': a sequence of directory |
| 220 | names of two hexadecimal digits each followed by a filename with the |
| 221 | rest of the object ID.]. |
Thomas Rast | 66d6819 | 2010-03-12 18:04:37 +0100 | [diff] [blame] | 222 | |
| 223 | Every notes change creates a new commit at the specified notes ref. |
| 224 | You can therefore inspect the history of the notes by invoking, e.g., |
Jonathan Nieder | 9eb3f81 | 2010-05-08 22:19:35 -0500 | [diff] [blame] | 225 | `git log -p notes/commits`. Currently the commit message only records |
| 226 | which operation triggered the update, and the commit authorship is |
| 227 | determined according to the usual rules (see linkgit:git-commit[1]). |
| 228 | These details may change in the future. |
Thomas Rast | 66d6819 | 2010-03-12 18:04:37 +0100 | [diff] [blame] | 229 | |
Jonathan Nieder | 9eb3f81 | 2010-05-08 22:19:35 -0500 | [diff] [blame] | 230 | It is also permitted for a notes ref to point directly to a tree |
| 231 | object, in which case the history of the notes can be read with |
| 232 | `git log -p -g <refname>`. |
Thomas Rast | 66d6819 | 2010-03-12 18:04:37 +0100 | [diff] [blame] | 233 | |
| 234 | |
Johan Herland | 00f0306 | 2010-11-09 22:49:50 +0100 | [diff] [blame] | 235 | NOTES MERGE STRATEGIES |
| 236 | ---------------------- |
| 237 | |
Johan Herland | 809f38c | 2010-11-09 22:49:51 +0100 | [diff] [blame] | 238 | The default notes merge strategy is "manual", which checks out |
| 239 | conflicting notes in a special work tree for resolving notes conflicts |
| 240 | (`.git/NOTES_MERGE_WORKTREE`), and instructs the user to resolve the |
| 241 | conflicts in that work tree. |
Johan Herland | 6abb365 | 2010-11-09 22:49:52 +0100 | [diff] [blame] | 242 | When done, the user can either finalize the merge with |
| 243 | 'git notes merge --commit', or abort the merge with |
| 244 | 'git notes merge --abort'. |
Johan Herland | 00f0306 | 2010-11-09 22:49:50 +0100 | [diff] [blame] | 245 | |
| 246 | "ours" automatically resolves conflicting notes in favor of the local |
| 247 | version (i.e. the current notes ref). |
| 248 | |
| 249 | "theirs" automatically resolves notes conflicts in favor of the remote |
| 250 | version (i.e. the given notes ref being merged into the current notes |
| 251 | ref). |
| 252 | |
| 253 | "union" automatically resolves notes conflicts by concatenating the |
| 254 | local and remote versions. |
| 255 | |
Johan Herland | a6a0909 | 2010-11-15 00:57:17 +0100 | [diff] [blame] | 256 | "cat_sort_uniq" is similar to "union", but in addition to concatenating |
| 257 | the local and remote versions, this strategy also sorts the resulting |
| 258 | lines, and removes duplicate lines from the result. This is equivalent |
| 259 | to applying the "cat | sort | uniq" shell pipeline to the local and |
| 260 | remote versions. This strategy is useful if the notes follow a line-based |
| 261 | format where one wants to avoid duplicated lines in the merge result. |
| 262 | Note that if either the local or remote version contain duplicate lines |
| 263 | prior to the merge, these will also be removed by this notes merge |
| 264 | strategy. |
| 265 | |
Johan Herland | 00f0306 | 2010-11-09 22:49:50 +0100 | [diff] [blame] | 266 | |
Jonathan Nieder | 8d6888e | 2010-05-08 22:21:34 -0500 | [diff] [blame] | 267 | EXAMPLES |
| 268 | -------- |
| 269 | |
| 270 | You can use notes to add annotations with information that was not |
| 271 | available at the time a commit was written. |
| 272 | |
| 273 | ------------ |
| 274 | $ git notes add -m 'Tested-by: Johannes Sixt <j6t@kdbg.org>' 72a144e2 |
| 275 | $ git show -s 72a144e |
| 276 | [...] |
| 277 | Signed-off-by: Junio C Hamano <gitster@pobox.com> |
| 278 | |
| 279 | Notes: |
| 280 | Tested-by: Johannes Sixt <j6t@kdbg.org> |
| 281 | ------------ |
| 282 | |
| 283 | In principle, a note is a regular Git blob, and any kind of |
| 284 | (non-)format is accepted. You can binary-safely create notes from |
| 285 | arbitrary files using 'git hash-object': |
| 286 | |
| 287 | ------------ |
| 288 | $ cc *.c |
| 289 | $ blob=$(git hash-object -w a.out) |
| 290 | $ git notes --ref=built add -C "$blob" HEAD |
| 291 | ------------ |
| 292 | |
Michael J Gruber | 11432bb | 2011-08-25 12:26:37 +0200 | [diff] [blame] | 293 | (You cannot simply use `git notes --ref=built add -F a.out HEAD` |
| 294 | because that is not binary-safe.) |
Jonathan Nieder | 8d6888e | 2010-05-08 22:21:34 -0500 | [diff] [blame] | 295 | Of course, it doesn't make much sense to display non-text-format notes |
| 296 | with 'git log', so if you use such notes, you'll probably need to write |
| 297 | some special-purpose tools to do something useful with them. |
| 298 | |
| 299 | |
Jonathan Nieder | ed9098f | 2010-05-08 22:21:59 -0500 | [diff] [blame] | 300 | CONFIGURATION |
| 301 | ------------- |
| 302 | |
| 303 | core.notesRef:: |
Jonathan Nieder | 0097971 | 2010-05-08 22:23:58 -0500 | [diff] [blame] | 304 | Notes ref to read and manipulate instead of |
| 305 | `refs/notes/commits`. Must be an unabbreviated ref name. |
| 306 | This setting can be overridden through the environment and |
| 307 | command line. |
Jonathan Nieder | ed9098f | 2010-05-08 22:21:59 -0500 | [diff] [blame] | 308 | |
| 309 | notes.displayRef:: |
Jonathan Nieder | 66c4c32 | 2010-05-08 22:32:24 -0500 | [diff] [blame] | 310 | Which ref (or refs, if a glob or specified more than once), in |
| 311 | addition to the default set by `core.notesRef` or |
| 312 | 'GIT_NOTES_REF', to read notes from when showing commit |
| 313 | messages with the 'git log' family of commands. |
| 314 | This setting can be overridden on the command line or by the |
| 315 | 'GIT_NOTES_DISPLAY_REF' environment variable. |
| 316 | See linkgit:git-log[1]. |
Jonathan Nieder | ed9098f | 2010-05-08 22:21:59 -0500 | [diff] [blame] | 317 | |
| 318 | notes.rewrite.<command>:: |
| 319 | When rewriting commits with <command> (currently `amend` or |
Jonathan Nieder | c5ce183 | 2010-05-08 22:33:28 -0500 | [diff] [blame] | 320 | `rebase`), if this variable is `false`, git will not copy |
| 321 | notes from the original to the rewritten commit. Defaults to |
| 322 | `true`. See also "`notes.rewriteRef`" below. |
| 323 | + |
| 324 | This setting can be overridden by the 'GIT_NOTES_REWRITE_REF' |
| 325 | environment variable. |
Jonathan Nieder | ed9098f | 2010-05-08 22:21:59 -0500 | [diff] [blame] | 326 | |
| 327 | notes.rewriteMode:: |
Jonathan Nieder | c5ce183 | 2010-05-08 22:33:28 -0500 | [diff] [blame] | 328 | When copying notes during a rewrite, what to do if the target |
| 329 | commit already has a note. Must be one of `overwrite`, |
| 330 | `concatenate`, and `ignore`. Defaults to `concatenate`. |
Jonathan Nieder | ed9098f | 2010-05-08 22:21:59 -0500 | [diff] [blame] | 331 | + |
| 332 | This setting can be overridden with the `GIT_NOTES_REWRITE_MODE` |
| 333 | environment variable. |
| 334 | |
| 335 | notes.rewriteRef:: |
| 336 | When copying notes during a rewrite, specifies the (fully |
Jonathan Nieder | c5ce183 | 2010-05-08 22:33:28 -0500 | [diff] [blame] | 337 | qualified) ref whose notes should be copied. May be a glob, |
| 338 | in which case notes in all matching refs will be copied. You |
| 339 | may also specify this configuration several times. |
Jonathan Nieder | ed9098f | 2010-05-08 22:21:59 -0500 | [diff] [blame] | 340 | + |
| 341 | Does not have a default value; you must configure this variable to |
| 342 | enable note rewriting. |
| 343 | + |
Jonathan Nieder | c5ce183 | 2010-05-08 22:33:28 -0500 | [diff] [blame] | 344 | Can be overridden with the 'GIT_NOTES_REWRITE_REF' environment variable. |
Jonathan Nieder | ed9098f | 2010-05-08 22:21:59 -0500 | [diff] [blame] | 345 | |
Jonathan Nieder | 0097971 | 2010-05-08 22:23:58 -0500 | [diff] [blame] | 346 | |
| 347 | ENVIRONMENT |
| 348 | ----------- |
| 349 | |
| 350 | 'GIT_NOTES_REF':: |
| 351 | Which ref to manipulate notes from, instead of `refs/notes/commits`. |
| 352 | This overrides the `core.notesRef` setting. |
| 353 | |
Jonathan Nieder | 66c4c32 | 2010-05-08 22:32:24 -0500 | [diff] [blame] | 354 | 'GIT_NOTES_DISPLAY_REF':: |
| 355 | Colon-delimited list of refs or globs indicating which refs, |
| 356 | in addition to the default from `core.notesRef` or |
| 357 | 'GIT_NOTES_REF', to read notes from when showing commit |
| 358 | messages. |
| 359 | This overrides the `notes.displayRef` setting. |
| 360 | + |
| 361 | A warning will be issued for refs that do not exist, but a glob that |
| 362 | does not match any refs is silently ignored. |
| 363 | |
Jonathan Nieder | c5ce183 | 2010-05-08 22:33:28 -0500 | [diff] [blame] | 364 | 'GIT_NOTES_REWRITE_MODE':: |
| 365 | When copying notes during a rewrite, what to do if the target |
| 366 | commit already has a note. |
| 367 | Must be one of `overwrite`, `concatenate`, and `ignore`. |
| 368 | This overrides the `core.rewriteMode` setting. |
| 369 | |
| 370 | 'GIT_NOTES_REWRITE_REF':: |
| 371 | When rewriting commits, which notes to copy from the original |
| 372 | to the rewritten commit. Must be a colon-delimited list of |
| 373 | refs or globs. |
| 374 | + |
| 375 | If not set in the environment, the list of notes to copy depends |
| 376 | on the `notes.rewrite.<command>` and `notes.rewriteRef` settings. |
| 377 | |
Jonathan Nieder | 0097971 | 2010-05-08 22:23:58 -0500 | [diff] [blame] | 378 | |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 379 | Author |
| 380 | ------ |
Johan Herland | 7d54117 | 2010-02-13 22:28:29 +0100 | [diff] [blame] | 381 | Written by Johannes Schindelin <johannes.schindelin@gmx.de> and |
| 382 | Johan Herland <johan@herland.net> |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 383 | |
| 384 | Documentation |
| 385 | ------------- |
Johan Herland | 7d54117 | 2010-02-13 22:28:29 +0100 | [diff] [blame] | 386 | Documentation by Johannes Schindelin and Johan Herland |
Johannes Schindelin | 65d9fb4 | 2009-10-09 12:21:58 +0200 | [diff] [blame] | 387 | |
| 388 | GIT |
| 389 | --- |
| 390 | Part of the linkgit:git[7] suite |