diff options
Diffstat (limited to 'builtin/clone.c')
-rw-r--r-- | builtin/clone.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/builtin/clone.c b/builtin/clone.c index 651b4cc20b..72eebca535 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -563,7 +563,10 @@ static int checkout(void) "unable to checkout.\n")); return 0; } - if (strcmp(head, "HEAD")) { + if (!strcmp(head, "HEAD")) { + if (advice_detached_head) + detach_advice(sha1_to_hex(sha1)); + } else { if (prefixcmp(head, "refs/heads/")) die(_("HEAD not found below refs/heads!")); } |