diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-06-28 12:53:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-28 12:53:30 -0700 |
commit | 8d3661d5b1c7ca698a863625a05888c66004d3c1 (patch) | |
tree | ecc46b64feae1cd7b95a0d0987d09bd10c2a5a73 /builtin/send-pack.c | |
parent | Merge branch 'jh/partial-clone' (diff) | |
parent | builtin/send-pack: populate the default configs (diff) | |
download | tgif-8d3661d5b1c7ca698a863625a05888c66004d3c1.tar.xz |
Merge branch 'ms/send-pack-honor-config'
"git send-pack --signed" (hence "git push --signed" over the http
transport) did not read user ident from the config mechanism to
determine whom to sign the push certificate as, which has been
corrected.
* ms/send-pack-honor-config:
builtin/send-pack: populate the default configs
Diffstat (limited to 'builtin/send-pack.c')
-rw-r--r-- | builtin/send-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/send-pack.c b/builtin/send-pack.c index 4923b1058c..42fd8d1a35 100644 --- a/builtin/send-pack.c +++ b/builtin/send-pack.c @@ -121,7 +121,7 @@ static int send_pack_config(const char *k, const char *v, void *cb) } } } - return 0; + return git_default_config(k, v, cb); } int cmd_send_pack(int argc, const char **argv, const char *prefix) |