Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jgit-dev] Question on large object streams


Did you repack with -f flag to force recomputing deltas?  The idea of
-delta gitattribute is to force git to store the object *not* as a
delta... but instead as a whole object.  That makes it possible to
read in a single inflate scan through the pack file, at the expense of
a more higher disk usage and network bandwidth.  Classic space/time
tradeoff.  :-)

Thanks, '-f' helps. Now obtaining a large object content using streams takes less
time than usign getBytes(). I wonder if there is any way do get packs without deltas
during fetch (without running repack)?

Back to the top