Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Fix branch -m @{-1} newname
author
Junio C Hamano
<gitster@pobox.com>
Sat, 21 Mar 2009 20:23:27 +0000
(13:23 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 23 Mar 2009 06:52:11 +0000
(23:52 -0700)
The command is supposed to rename the branch we were on before switched
from to a new name, but was not aware of the short-hand notation we added
recently.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-branch.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
a31dca0
)
diff --git
a/builtin-branch.c
b/builtin-branch.c
index 7452db13c89f0d025700949605e983087df85961..0df82bf96d7f06426ac0ff89f3410714257c20fd 100644
(file)
--- a/
builtin-branch.c
+++ b/
builtin-branch.c
@@
-468,18
+468,18
@@
static void rename_branch(const char *oldname, const char *newname, int force)
if (!oldname)
die("cannot rename the current branch while not on any.");
if (!oldname)
die("cannot rename the current branch while not on any.");
- strbuf_
addf(&oldref, "refs/heads/%s"
, oldname);
-
+ strbuf_
branchname(&oldref
, oldname);
+ strbuf_splice(&oldref, 0, 0, "refs/heads/", 11);
if (check_ref_format(oldref.buf))
if (check_ref_format(oldref.buf))
- die("Invalid branch name: %s", oldref.buf);
-
- strbuf_addf(&newref, "refs/heads/%s", newname);
+ die("Invalid branch name: '%s'", oldname);
+ strbuf_branchname(&newref, newname);
+ strbuf_splice(&newref, 0, 0, "refs/heads/", 11);
if (check_ref_format(newref.buf))
if (check_ref_format(newref.buf))
- die("Invalid branch name:
%s", newref.buf
);
+ die("Invalid branch name:
'%s'", newname
);
if (resolve_ref(newref.buf, sha1, 1, NULL) && !force)
if (resolve_ref(newref.buf, sha1, 1, NULL) && !force)
- die("A branch named '%s' already exists.", new
name
);
+ die("A branch named '%s' already exists.", new
ref.buf + 11
);
strbuf_addf(&logmsg, "Branch: renamed %s to %s",
oldref.buf, newref.buf);
strbuf_addf(&logmsg, "Branch: renamed %s to %s",
oldref.buf, newref.buf);