• J
    checkout: print a message when switching unborn branches · afa8c07a
    Jeff King 提交于
    When we switch to a new branch using checkout, we usually output a
    message indicating what happened. However, when we switch from an unborn
    branch to a new branch, we do not print anything, which may leave the
    user wondering what happened.
    
    The reason is that the unborn branch is a special case (see abe19980),
    and does not follow the usual switch_branches code path. Let's add a
    similar informational message to the special case to match the usual
    code path.
    Signed-off-by: NJeff King <peff@peff.net>
    Signed-off-by: NJunio C Hamano <gitster@pobox.com>
    afa8c07a
checkout.c 31.5 KB