1
0
mirror of https://github.com/git/git synced 2024-07-05 00:58:49 +00:00

transport-helper: don't feed bogus refs to export push

When we want to push to a remote helper that has the
"export" capability, we collect all of the refs we want to
push and then feed them to fast-export.

However, the list of refs is actually a list of remote refs,
not local refs. The mapped local refs are included via the
peer_ref pointer. So when we add an argument to our
fast-export command line, we must be sure to use the local
peer_ref name (and if there is no local name, it is because
we are not actually sending that ref, or we may not even
have the ref at all).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Sverre Rabbelier <srabbelier@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King 2011-07-16 15:03:26 +02:00 committed by Junio C Hamano
parent 4e51ba238f
commit 3ea7d09461
2 changed files with 3 additions and 2 deletions

View File

@ -106,7 +106,7 @@ test_expect_failure 'fetch multiple branches' '
compare_refs server new localclone refs/remotes/origin/new
'
test_expect_failure 'push when remote has extra refs' '
test_expect_success 'push when remote has extra refs' '
(cd clone &&
echo content >>file &&
git commit -a -m six &&

View File

@ -730,7 +730,8 @@ static int push_refs_with_export(struct transport *transport,
}
free(private);
string_list_append(&revlist_args, ref->name);
if (ref->peer_ref)
string_list_append(&revlist_args, ref->peer_ref->name);
}