ref: bb33663b402060b6664d3a1829daad0e44fa9af0
parent: 4eeefed7b0c1c47329213f1da719820ebbbebf18
author: Ori Bernstein <ori@eigenstate.org>
date: Sat Jun 11 12:36:45 EDT 2022
git/get: keep sending what we have until we get an ack Git9 was sloppy about telling git what commits we have. We would list the commits at the tip of the branch, but not walk down it, which means we would request too much data if our local branches were ahead of the remote. This patch changes that, sending the tips *and* the first 256 commits after them, so that git can produce a better pack for us, with fewer redundant commits.