X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=refs.c;h=c33729c54a001423fb682cc920b72e5b1d03f8ea;hb=1e80e0449248edb77b0fb9853f4a3404a599e207;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; } }