diff options
author | Johan Herland <johan@herland.net> | 2010-11-09 22:49:39 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-11-10 10:25:52 -0800 |
commit | 4a9cf1cefc0fd05e0eb46f862e398f1e4ac1c9a7 (patch) | |
tree | 40ed5e736dc62146c12984ebbda982e2e257f11c /notes.h | |
parent | 55d060771a15f4ce75e71b966d8117d8a32cc47b (diff) | |
download | git-4a9cf1cefc0fd05e0eb46f862e398f1e4ac1c9a7.tar.gz |
notes.h: Make default_notes_ref() available in notes API
Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'notes.h')
-rw-r--r-- | notes.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -44,6 +44,20 @@ extern struct notes_tree { } default_notes_tree; /* + * Return the default notes ref. + * + * The default notes ref is the notes ref that is used when notes_ref == NULL + * is passed to init_notes(). + * + * This the first of the following to be defined: + * 1. The '--ref' option to 'git notes', if given + * 2. The $GIT_NOTES_REF environment variable, if set + * 3. The value of the core.notesRef config variable, if set + * 4. GIT_NOTES_DEFAULT_REF (i.e. "refs/notes/commits") + */ +const char *default_notes_ref(void); + +/* * Flags controlling behaviour of notes tree initialization * * Default behaviour is to initialize the notes tree from the tree object |