notes: make expand_notes_ref globally accessible
This function is useful for other commands besides "git notes" which want to let users refer to notes by their shorthand name. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
07514c83c2
commit
03bb5789cd
10
notes.c
10
notes.c
@ -1285,3 +1285,13 @@ int copy_note(struct notes_tree *t,
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void expand_notes_ref(struct strbuf *sb)
|
||||
{
|
||||
if (!prefixcmp(sb->buf, "refs/notes/"))
|
||||
return; /* we're happy */
|
||||
else if (!prefixcmp(sb->buf, "notes/"))
|
||||
strbuf_insert(sb, 0, "refs/", 5);
|
||||
else
|
||||
strbuf_insert(sb, 0, "refs/notes/", 11);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user