diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-04-19 21:37:14 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-04-19 21:37:14 -0700 |
commit | 872e2cf00a570e9d83e40343579a7bb092307d53 (patch) | |
tree | 5ea827f2490dcff68f25e380213376ecb69acb36 /transport.c | |
parent | b1081e4004091947b6c6a806625addd1cbba61b7 (diff) | |
parent | 06bf4ad1db92c32af38e16d9b7f928edbd647780 (diff) | |
download | git-872e2cf00a570e9d83e40343579a7bb092307d53.tar.gz |
Merge branch 'bw/push-options-recursively-to-submodules'
"git push --recurse-submodules --push-option=<string>" learned to
propagate the push option recursively down to pushes in submodules.
* bw/push-options-recursively-to-submodules:
push: propagate remote and refspec with --recurse-submodules
submodule--helper: add push-check subcommand
remote: expose parse_push_refspec function
push: propagate push-options with --recurse-submodules
push: unmark a local variable as static
Diffstat (limited to 'transport.c')
-rw-r--r-- | transport.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/transport.c b/transport.c index c83f3b71be..4d33138a75 100644 --- a/transport.c +++ b/transport.c @@ -1031,7 +1031,9 @@ int transport_push(struct transport *transport, &ref->new_oid); if (!push_unpushed_submodules(&commits, - transport->remote->name, + transport->remote, + refspec, refspec_nr, + transport->push_options, pretend)) { oid_array_clear(&commits); die("Failed to push all needed submodules!"); |