summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 009318b)
raw | patch | inline | side by side (parent: 009318b)
author | Thomas Rast <trast@student.ethz.ch> | |
Mon, 12 Jan 2009 14:16:04 +0000 (15:16 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 13 Jan 2009 08:14:14 +0000 (00:14 -0800) |
The path format was inconsistent with the one used in git-notes.sh: it
supposedly split the sha1 in the same 2/38 format that .git/objects
uses, but the code uses the full sha1 without a path separator.
While at it, also fix a grammatical error.
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Acked-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
supposedly split the sha1 in the same 2/38 format that .git/objects
uses, but the code uses the full sha1 without a path separator.
While at it, also fix a grammatical error.
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Acked-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config.txt | patch | blob | history |
index b35a32abe115960a93c6aca0dbef9e9e56dcc585..2fdca0ea300d689130c5dc38eddc331e8a44d739 100644 (file)
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
core.notesRef::
When showing commit messages, also show notes which are stored in
- the given ref. This ref is expected to contain paths of the form
- ??/*, where the directory name consists of the first two
- characters of the commit name, and the base name consists of
- the remaining 38 characters.
+ the given ref. This ref is expected to contain files named
+ after the full SHA-1 of the commit they annotate.
+
-If such a path exists in the given ref, the referenced blob is read, and
+If such a file exists in the given ref, the referenced blob is read, and
appended to the commit message, separated by a "Notes:" line. If the
given ref itself does not exist, it is not an error, but means that no
-notes should be print.
+notes should be printed.
+
This setting defaults to "refs/notes/commits", and can be overridden by
the `GIT_NOTES_REF` environment variable.