On Tue, Oct 12, 2021 at 2:17 PM Jeff King <peff@xxxxxxxx> wrote: > > On Tue, Oct 12, 2021 at 02:03:39PM -0700, H.J. Lu wrote: > > > https://github.com/git/git/commit/ae1a7eefff > > > > may have broken git behind a firewall: > > > > https://bugzilla.redhat.com/show_bug.cgi?id=2013288 > > > > I am behind a firewall and using gitproxy: > > > > exec socat - socks4:proxy-server-name:$1:$2 > > It's not the firewall; it's socat not handling half-duplex shutdown very > well (though you are right that it is related to the commit you found; > that's when Git started closing the write pipe when it's done writing). > > More discussion in this thread: > > https://lore.kernel.org/git/YS1Bni+QuZBOgkUI@xxxxxxxxxxxxxxxxxxxxxxx/ > > (the short answer is: use "socat -t 10"). > > -Peff Yes, "socat -t 10" works. Thanks. -- H.J.