Re: [PATCH] Teach git-branch howto rename a branch
From: Lars Hjemli <hidden>
Date: 2016-08-11 19:49:43
On 11/28/06, Junio C Hamano [off-list ref] wrote:
Lars Hjemli [off-list ref] writes:quoted
With two branchnames, the second name is renamed to the first.Thanks. "--rename newname oldname" feels funny, as already mentioned a few times on the list. rename(2) is "rename(old, new)" and mv(1) is "mv old new".
Ok, how about git branch [-m|-M] [oldbranch] newbranch where -m is 'move' and -M is 'force move'?
+ if (!rename_ref(oldref, newref) && !strcmp(oldname, head))
+ create_symref("HEAD", newref);
+}
Can create_symref() fail?Yes... But what can been done if/when it fails? create_symref() already seems to be pretty verbose about errors, so the only thing I can think of is to return the errorcode to the caller (which I should have done in the first place, git-branch ought to have a usable exitcode)
+int rename_ref(const char *oldref, const char *newref)
+{
+ unsigned char sha1[20], orig_sha1[20];
+ int flag = 0, logmoved = 0;
+ struct ref_lock *lock;
+ char msg[PATH_MAX*2 + 100];
+ struct stat stat;
+ int log = !lstat(git_path("logs/%s", oldref), &stat);
This is not wrong per-se, but it made me stop and wonder if we
want to error out when we find out "logs/oldref" is a symlink; I
do not think we care about it that much, but in that case we may
want to say stat() here instead... Just a minor detail.Well, it's a good point. If it's a symlink that's a pretty strong indication that someone has been messing with the log for some reason, so to error out is probably the right thing to do.
+ lock = lock_ref_sha1_basic("tmp-renamed-ref", NULL, NULL);
+ if (!lock)
+ return error("unable to lock tmp-renamed-ref");
+ lock->force_write = 1;
+ if (write_ref_sha1(lock, orig_sha1, msg))
+ return error("unable to save current sha1 in tmp-renamed-ref");
+ if (log && rename(git_path("logs/%s", oldref), git_path("tmp-renamed-log")))
+ return error("unable to move logfile logs/%s to tmp-renamed-log: %s",
+ oldref, strerror(errno));
I am confused with this code. tmp-renamed-ref is not even a
ref, you lock $GIT_DIR/tmp-renamed-ref and call write-ref_sha1()
with an uninitialized msg[] buffer to write into a logfile. What
is the name of that logfile? $GIT_DIR/log/tmp-renamed-ref???My goal was to save the ref in a tmp-file before deleting the old ref, not to log the event. I think of it as a way to get out of trouble if rename_ref should fail badly. Btw: I't _might_ be interesting to have $GIT_DIR/logs/tmp-renamed-ref (or something similar) as a branch-independent log of branch renames Anyway, I'l fix up the mentioned issues in a new patch --