Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaartic Sivaraam <kaartic.sivaraam@gmail.com>2017-11-14 14:42:59 +0300
committerJunio C Hamano <gitster@pobox.com>2017-11-15 05:43:29 +0300
commit662a4c8a097248a3c08a671866ecf37743f3ca4d (patch)
tree90b49dd44b8fe45ee56aa974d92884318eadc888
parenta625b092cc59940521789fe8a3ff69c8d6b14eb2 (diff)
builtin/branch: remove redundant check for HEAD
The lower level code has been made to handle this case for the sake of consistency. This has made this check redundant. So, remove the redundant check. Signed-off-by: Kaartic Sivaraam <kaartic.sivaraam@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--builtin/branch.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/builtin/branch.c b/builtin/branch.c
index e5bbfb4a17..945790b60b 100644
--- a/builtin/branch.c
+++ b/builtin/branch.c
@@ -793,9 +793,6 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
} else if (argc > 0 && argc <= 2) {
struct branch *branch = branch_get(argv[0]);
- if (!strcmp(argv[0], "HEAD"))
- die(_("it does not make sense to create 'HEAD' manually"));
-
if (!branch)
die(_("no such branch '%s'"), argv[0]);