refs: drop strbuf_ prefix from helpers
The helper functions (strbuf_branchname, strbuf_check_branch_ref, and strbuf_check_tag_ref) are about handling branch and tag names, and it is a non-essential fact that these functions use strbuf to hold these names. Rename them to make it clarify that these are more about "ref". Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
@ -2094,7 +2094,7 @@ sub format_log_line_html {
|
||||
(
|
||||
# The output of "git describe", e.g. v2.10.0-297-gf6727b0
|
||||
# or hadoop-20160921-113441-20-g094fb7d
|
||||
(?<!-) # see strbuf_check_tag_ref(). Tags can't start with -
|
||||
(?<!-) # see check_tag_ref(). Tags can't start with -
|
||||
[A-Za-z0-9.-]+
|
||||
(?!\.) # refs can't end with ".", see check_refname_format()
|
||||
-g$regex
|
||||
|
Reference in New Issue
Block a user