On Sat, Jun 08, 2024 at 02:46:38AM +0200, ellie wrote: > The deepening worked perfectly, thank you so much! I hope a resume will > still be considered however, if even just to help out newcomers. Because the packfile to send the user is created on the fly, making a clone fully resumable is tricky (a second clone may get an equivalent but slightly different pack due to new objects entering the repo, or even raciness between threads). One strategy people have worked on is for servers to point clients at static packfiles (which _do_ remain byte-for-byte identical, and can be resumed) to get some of the objects. But it requires some scheme on the server side to decide when and how to create those packfiles. So while there is support inside Git itself for this idea (both on the server and client side), I don't know of any servers where it is in active use. -Peff