summaryrefslogtreecommitdiff
path: root/transport-helper.c
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-05-21 01:02:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-05-21 16:53:59 (GMT)
commit67c9c782dae17822266783f8b5e15d73e7c91c65 (patch)
tree52bf79778f3df007bceaebe8634448788bc11766 /transport-helper.c
parent9134a460e3ebfc93790e98d74b3cda2bcca8eb8b (diff)
downloadgit-67c9c782dae17822266783f8b5e15d73e7c91c65.zip
git-67c9c782dae17822266783f8b5e15d73e7c91c65.tar.gz
git-67c9c782dae17822266783f8b5e15d73e7c91c65.tar.bz2
transport-helper: barf when user tries old:new
Otherwise with certain remote helpers (the ones that support 'export'), the users will be pushing to the wrong branch: git push topic:master Will push the topic branch, as if the user typed: git push topic Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport-helper.c')
-rw-r--r--transport-helper.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/transport-helper.c b/transport-helper.c
index 522d791..a782a9b 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -813,9 +813,11 @@ static int push_refs_with_export(struct transport *transport,
die("remote-helpers do not support ref deletion");
}
- if (ref->peer_ref)
+ if (ref->peer_ref) {
+ if (strcmp(ref->peer_ref->name, ref->name))
+ die("remote-helpers do not support old:new syntax");
string_list_append(&revlist_args, ref->peer_ref->name);
-
+ }
}
if (get_exporter(transport, &exporter, &revlist_args))