summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-09-22 03:24:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-09-23 23:42:12 (GMT)
commite5435ff1fc64d93cce73ec4ee2571219384a92a9 (patch)
tree5251a141e243c41eac971ca335e0e84aab9457d7 /builtin
parent52d59cc6452ed1aeec91f4c168a853ea8d9d5496 (diff)
downloadgit-e5435ff1fc64d93cce73ec4ee2571219384a92a9.zip
git-e5435ff1fc64d93cce73ec4ee2571219384a92a9.tar.gz
git-e5435ff1fc64d93cce73ec4ee2571219384a92a9.tar.bz2
branch: fix "copy" to never touch HEAD
When creating a new branch B by copying the branch A that happens to be the current branch, it also updates HEAD to point at the new branch. It probably was made this way because "git branch -c A B" piggybacked its implementation on "git branch -m A B", This does not match the usual expectation. If I were sitting on a blue chair, and somebody comes and repaints it to red, I would accept ending up sitting on a chair that is now red (I am also OK to stand, instead, as there no longer is my favourite blue chair). But if somebody creates a new red chair, modelling it after the blue chair I am sitting on, I do not expect to be booted off of the blue chair and ending up on sitting on the new red one. Let's fix this before it hits 'next'. Those who want to create a new branch and switch to it can do "git checkout B" after doing a "git branch -c B", and if that operation is so useful and deserves a short-hand way to do so, perhaps extend "git checkout -b B" to copy configurations while creating the new branch B. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/branch.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/builtin/branch.c b/builtin/branch.c
index 89f64f4..e2e3692 100644
--- a/builtin/branch.c
+++ b/builtin/branch.c
@@ -506,12 +506,9 @@ static void copy_or_rename_branch(const char *oldname, const char *newname, int
oldref.buf + 11);
}
- if (replace_each_worktree_head_symref(oldref.buf, newref.buf, logmsg.buf)) {
- if (copy)
- die(_("Branch copied to %s, but HEAD is not updated!"), newname);
- else
- die(_("Branch renamed to %s, but HEAD is not updated!"), newname);
- }
+ if (!copy &&
+ replace_each_worktree_head_symref(oldref.buf, newref.buf, logmsg.buf))
+ die(_("Branch renamed to %s, but HEAD is not updated!"), newname);
strbuf_release(&logmsg);