Age | Commit message (Collapse) | Author |
|
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.
|
|
Sending the packet on failure could junk the errstr,
so set it after we send the message.
|
|
Per the docs:
the sender SHOULD include a LF, but the
receiver MUST NOT complain if it is not
present.
I typoed away the SHOULD, and got missed the
MUST NOT.
thanks qbit.
|
|
This makes it easier to serve local repositories where the sandboxing
gets in the way.
|
|
Add a snapshot of git9 to 9front.
|