8000 Merge push in remote by tiennou · Pull Request #2516 · libgit2/libgit2 · GitHub
[go: up one dir, main page]

Skip to content

Merge push in remote #2516

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 9 commits into from
Prev Previous commit
Next Next commit
Resolve more invalid push refspecs.
  • Loading branch information
tiennou committed Aug 13, 2014
commit 8bfec5b0bc437dc3e2b55af770ee4de20888ef0d
4 changes: 2 additions & 2 deletions tests/online/push.c
8265
Original file line number Diff line number Diff line change
Expand Up @@ -622,11 +622,11 @@ void test_online_push__multi(void)

void test_online_push__implicit_tgt(void)
{
const char *specs1[] = { "refs/heads/b1:" };
const char *specs1[] = { "refs/heads/b1:refs/heads/b1" };
push_status exp_stats1[] = { { "refs/heads/b1", 1 } };
expected_ref exp_refs1[] = { { "refs/heads/b1", &_oid_b1 } };

const char *specs2[] = { "refs/heads/b2:" };
const char *specs2[] = { "refs/heads/b2:refs/heads/b2" };
push_status exp_stats2[] = { { "refs/heads/b2", 1 } };
expected_ref exp_refs2[] = {
{ "refs/heads/b1", &_oid_b1 },
Expand Down
0