From: Junio C Hamano Date: Thu, 25 May 2006 04:48:34 +0000 (-0700) Subject: fetch-pack: give up after getting too many "ack continue" X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=f061e5fdd6a65216976a8bd547b2340e6297217b;hp=f061e5fdd6a65216976a8bd547b2340e6297217b;p=git.git fetch-pack: give up after getting too many "ack continue" If your repository have more roots than the remote repository you ask an object for, the remote upload-pack keeps responding "ack continue" until it fills up its received-have buffer (currently 256 entries). Usually this is not a problem because the requester stops traversing the ancestry chain from the commit it gets "ack continue" for, but this mechanism does not work as a roadblock when it traverses down the path to the root the other side does not have. Signed-off-by: Junio C Hamano ---