aboutsummaryrefslogtreecommitdiff
path: root/transport-helper.c
diff options
context:
space:
mode:
authorClemens Buchacher <drizzd@aon.at>2009-10-30 17:47:31 -0700
committerJunio C Hamano <gitster@pobox.com>2009-10-30 19:20:54 -0700
commitd8f67d205eb98ea6dab915c29122158054218128 (patch)
treefe1e38bc1e603ebd0636f6e9d3368c07052f7c9b /transport-helper.c
parentae4efe195752c27cb25fca9451852c0f4eebdb28 (diff)
downloadgit-d8f67d205eb98ea6dab915c29122158054218128.tar.gz
git-d8f67d205eb98ea6dab915c29122158054218128.tar.xz
remote-helpers: return successfully if everything up-to-date
Signed-off-by: Clemens Buchacher <drizzd@aon.at> Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport-helper.c')
-rw-r--r--transport-helper.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/transport-helper.c b/transport-helper.c
index 16c6641f0..5078c7100 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -263,6 +263,8 @@ static int push_refs(struct transport *transport,
strbuf_addstr(&buf, ref->name);
strbuf_addch(&buf, '\n');
}
+ if (buf.len == 0)
+ return 0;
transport->verbose = flags & TRANSPORT_PUSH_VERBOSE ? 1 : 0;
standard_options(transport);