diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-16 23:48:22 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-17 23:10:56 -0800 |
commit | f7087e2e7c34421b4577876969da94d0f6195414 (patch) | |
tree | 6df10fb87b728bca6d3f60aebc6e2ca44afb1ae5 | |
parent | 8872f27b8773dfe7d3dbb440c27d4a5a9dbc8470 (diff) | |
download | git-f7087e2e7c34421b4577876969da94d0f6195414.tar.gz git-f7087e2e7c34421b4577876969da94d0f6195414.tar.xz |
Revert "We do not like "HEAD" as a new branch name"
This reverts ee34518d629331dadd58b1a75294369d679eda8b commit.
-rw-r--r-- | refs.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -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; } } |