refs.c: pass the ref log message to _create/delete/update instead of _commit
Change the ref transaction API so that we pass the reflog message to the create/delete/update functions instead of to ref_transaction_commit. This allows different reflog messages for each ref update in a multi-ref transaction. Signed-off-by: Ronnie Sahlberg <sahlberg@google.com> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
dbdcac7d5c
commit
db7516ab9f
5
walker.c
5
walker.c
@ -300,14 +300,13 @@ int walker_fetch(struct walker *walker, int targets, char **target,
|
||||
strbuf_addf(&refname, "refs/%s", write_ref[i]);
|
||||
if (ref_transaction_update(transaction, refname.buf,
|
||||
&sha1[20 * i], NULL, 0, 0,
|
||||
msg ? msg : "fetch (unknown)",
|
||||
&err)) {
|
||||
error("%s", err.buf);
|
||||
goto done;
|
||||
}
|
||||
}
|
||||
if (ref_transaction_commit(transaction,
|
||||
msg ? msg : "fetch (unknown)",
|
||||
&err)) {
|
||||
if (ref_transaction_commit(transaction, &err)) {
|
||||
error("%s", err.buf);
|
||||
goto done;
|
||||
}
|
||||
|
Reference in New Issue
Block a user