diff options
author | Jeff King <peff@peff.net> | 2020-11-21 01:29:21 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-11-21 22:55:17 +0100 |
commit | 8b59935114d9dafd737a7674ccf3787e7ffc61c9 (patch) | |
tree | 7afad32f7dc50052e4fe45d01a8b7f1d94b55730 /send-pack.c | |
parent | Git 2.29.2 (diff) | |
download | git-8b59935114d9dafd737a7674ccf3787e7ffc61c9.tar.xz git-8b59935114d9dafd737a7674ccf3787e7ffc61c9.zip |
send-pack: kill pack-objects helper on signal or exit
We spawn an external pack-objects process to actually send
objects to the remote side. If we are killed by a signal
during this process, the pack-objects will keep running and
complete the push, which may surprise the user. We should
take it down when we go down.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'send-pack.c')
-rw-r--r-- | send-pack.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/send-pack.c b/send-pack.c index c9698070fc..2b3d15be5a 100644 --- a/send-pack.c +++ b/send-pack.c @@ -85,6 +85,7 @@ static int pack_objects(int fd, struct ref *refs, struct oid_array *extra, struc po.in = -1; po.out = args->stateless_rpc ? -1 : fd; po.git_cmd = 1; + po.clean_on_exit = 1; if (start_command(&po)) die_errno("git pack-objects failed"); |