Skip to content

Commit 8d3661d

Browse files
committed
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
2 parents 92e1bbc + d067d98 commit 8d3661d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/send-pack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ static int send_pack_config(const char *k, const char *v, void *cb)
121121
}
122122
}
123123
}
124-
return 0;
124+
return git_default_config(k, v, cb);
125125
}
126126

127127
int cmd_send_pack(int argc, const char **argv, const char *prefix)

0 commit comments

Comments
 (0)