author | Junio C Hamano <gitster@pobox.com> | |
Sat, 21 Mar 2009 21:35:51 +0000 (14:35 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 23 Mar 2009 06:52:11 +0000 (23:52 -0700) | ||
commit | a2fab531bbb00ff64335906e22854365be2eb5c7 | |
tree | 3ae5efaa819454c41ece9566e0b38df7fadebd94 | tree | snapshot |
parent | 03d3aada5a2a68a7acdb6286fd72155f01626e41 | commit | diff |
strbuf_check_branch_ref(): a helper to check a refname for a branch
This allows a common calling sequence
strbuf_branchname(&ref, name);
strbuf_splice(&ref, 0, 0, "refs/heads/", 11);
if (check_ref_format(ref.buf))
die(...);
to be refactored into
if (strbuf_check_branch_ref(&ref, name))
die(...);
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This allows a common calling sequence
strbuf_branchname(&ref, name);
strbuf_splice(&ref, 0, 0, "refs/heads/", 11);
if (check_ref_format(ref.buf))
die(...);
to be refactored into
if (strbuf_check_branch_ref(&ref, name))
die(...);
Signed-off-by: Junio C Hamano <gitster@pobox.com>
branch.c | diff | blob | history | |
builtin-branch.c | diff | blob | history | |
builtin-check-ref-format.c | diff | blob | history | |
builtin-checkout.c | diff | blob | history | |
strbuf.c | diff | blob | history | |
strbuf.h | diff | blob | history |