Browse Source

Revert "We do not like "HEAD" as a new branch name"

This reverts ee34518d62 commit.
maint
Junio C Hamano 19 years ago
parent
commit
f7087e2e7c
  1. 5
      refs.c

5
refs.c

@ -347,11 +347,6 @@ int check_ref_format(const char *ref) @@ -347,11 +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" */
if (cp - ref > 4 && !strcmp(cp - 4, "HEAD"))
return -1;

return 0;
}
}

Loading…
Cancel
Save