X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=refs.c;h=c33729c54a001423fb682cc920b72e5b1d03f8ea;hb=89438677abaae1a8ffc3c0905f3355a590da7bf4;hp=7a2c56e64b8cea71a83217ba39e718234b96b876;hpb=68283999f8ae0e9286f8b7f199905b77d608cb80;p=git.git diff --git a/refs.c b/refs.c index 7a2c56e6..c33729c5 100644 --- a/refs.c +++ b/refs.c @@ -347,14 +347,6 @@ int check_ref_format(const char *ref) if (!ch) { if (level < 2) return -1; /* at least of form "heads/blah" */ - - /* Do not allow ref name to end in "HEAD" - * Note that cp is poiting at one past NUL at the end. - * i.e. cp[-1] = NUL. - */ - if (5 <= cp - ref && !strcmp(cp - 5, "HEAD")) - return -1; - return 0; } }