summaryrefslogtreecommitdiff
path: root/transport-helper.c
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-04-11 00:07:11 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-04-11 16:04:39 (GMT)
commit5034fdea3017304fa37e50b3bd40c392503ebfd2 (patch)
tree725f4871b7dc9314e5d74ee4896e1f78b54fc171 /transport-helper.c
parentc096955c5bb8e20186cc7c07d4d12b77ddcd01c6 (diff)
downloadgit-5034fdea3017304fa37e50b3bd40c392503ebfd2.zip
git-5034fdea3017304fa37e50b3bd40c392503ebfd2.tar.gz
git-5034fdea3017304fa37e50b3bd40c392503ebfd2.tar.bz2
transport-helper: improve push messages
If there's already a remote-helper tracking ref, we can fetch the SHA-1 to report proper push messages (as opposed to always reporting [new branch]). The remote-helper currently can specify the old SHA-1 to avoid this problem, but there's no point in forcing all remote-helpers to be aware of git commit ids; they should be able to be agnostic of them. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Reviewed-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport-helper.c')
-rw-r--r--transport-helper.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/transport-helper.c b/transport-helper.c
index 3fc43b9..56207ea 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -801,6 +801,7 @@ static int push_refs_with_export(struct transport *transport,
if (private && !get_sha1(private, sha1)) {
strbuf_addf(&buf, "^%s", private);
string_list_append(&revlist_args, strbuf_detach(&buf, NULL));
+ hashcpy(ref->old_sha1, sha1);
}
free(private);