* git gc expanding packed data?
@ 2009-08-04 20:25 Hin-Tak Leung
2009-08-05 22:39 ` Nicolas Pitre
0 siblings, 1 reply; 12+ messages in thread
From: Hin-Tak Leung @ 2009-08-04 20:25 UTC (permalink / raw)
To: git
I cloned gcc's git about a week ago to work on some problems I have
with gcc on minor platforms, just plain 'git clone
git://gcc.gnu.org/git/gcc.git gcc' .and ran gcc fetch about daily, and
'git rebase origin' from time to time. I don't have local changes,
just following and monitoring what's going on in gcc. So after a week,
I thought I'd do a git gc . Then it goes very bizarre.
Before I start 'git gc', .The whole of .git was about 700MB and
git/objects/pack was a bit under 600MB, with a few other directories
under .git/objects at 10's of K's and a few 30000-40000K's, and the
checkout was, well, the size of gcc source code. But after I started
git gc, the message stays in the 'counting objects' at about 900,000
for a long time, while a lot of directories under .git/objects/ gets a
bit large, and .git blows up to at least 7GB with a lot of small files
under .git/objects/*/, before seeing as I will run out of disk space,
I kill the whole lot and ran git clone again, since I don't have any
local change and there is nothing to lose.
I am running git version 1.6.2.5 (fedora 11). Is there any reason why
'git gc' does that?
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: git gc expanding packed data?
2009-08-04 20:25 git gc expanding packed data? Hin-Tak Leung
@ 2009-08-05 22:39 ` Nicolas Pitre
2009-08-11 10:17 ` Hin-Tak Leung
0 siblings, 1 reply; 12+ messages in thread
From: Nicolas Pitre @ 2009-08-05 22:39 UTC (permalink / raw)
To: Hin-Tak Leung; +Cc: git
On Tue, 4 Aug 2009, Hin-Tak Leung wrote:
> I cloned gcc's git about a week ago to work on some problems I have
> with gcc on minor platforms, just plain 'git clone
> git://gcc.gnu.org/git/gcc.git gcc' .and ran gcc fetch about daily, and
> 'git rebase origin' from time to time. I don't have local changes,
> just following and monitoring what's going on in gcc. So after a week,
> I thought I'd do a git gc . Then it goes very bizarre.
>
> Before I start 'git gc', .The whole of .git was about 700MB and
> git/objects/pack was a bit under 600MB, with a few other directories
> under .git/objects at 10's of K's and a few 30000-40000K's, and the
> checkout was, well, the size of gcc source code. But after I started
> git gc, the message stays in the 'counting objects' at about 900,000
> for a long time, while a lot of directories under .git/objects/ gets a
> bit large, and .git blows up to at least 7GB with a lot of small files
> under .git/objects/*/, before seeing as I will run out of disk space,
> I kill the whole lot and ran git clone again, since I don't have any
> local change and there is nothing to lose.
>
> I am running git version 1.6.2.5 (fedora 11). Is there any reason why
> 'git gc' does that?
There is probably a reason, although a bad one for sure.
Well... OK.
It appears that the git installation serving clone requests for
git://gcc.gnu.org/git/gcc.git generates lots of unreferenced objects. I
just cloned it and the pack I was sent contains 1383356 objects (can be
determined with 'git show-index < .git/objects/pack/*.idx | wc -l').
However, there are only 978501 actually referenced objects in that
cloned repository ( 'git rev-list --all --objects | wc -l'). That makes
for 404855 useless objects in the cloned repository.
Now git has a safety mechanism to _not_ delete unreferenced objects
right away when running 'git gc'. By default unreferenced objects are
kept around for a period of 2 weeks. This is to make it easy for you to
recover accidentally deleted branches or commits, or to avoid a race
where a just-created object in the process of being but not yet
referenced could be deleted by a 'git gc' process running in parallel.
So to give that grace period to packed but unreferenced objects, the
repack process pushes those unreferenced objects out of the pack into
their loose form so they can be aged and eventually pruned. Objects
becoming unreferenced are usually not that many though. Having 404855
unreferenced objects is quite a lot, and being sent those objects in the
first place via a clone is stupid and a complete waste of network
bandwidth.
Anyone has an idea of the git version running on gcc.gnu.org? It is
certainly buggy and needs fixing.
Anyway... To solve your problem, you simply need to run 'git gc' with
the --prune=now argument to disable that grace period and get rid of
those unreferenced objects right away (safe only if no other git
activities are taking place at the same time which should be easy to
ensure on a workstation). The resulting .git/objects directory size
will shrink to about 441 MB. If the gcc.gnu.org git server was doing
its job properly, the size of the clone transfer would also be
significantly smaller, meaning around 414 MB instead of the current 600+
MB.
And BTW, using 'git gc --aggressive' with a later git version (or
'git repack -a -f -d --window=250 --depth=250') gives me a .git/objects
directory size of 310 MB, meaning that the actual repository with all
the trunk history is _smaller_ than the actual source checkout. If that
repository was properly repacked on the server, the clone data transfer
would be 283 MB. This is less than half the current clone transfer
size.
Nicolas
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: git gc expanding packed data?
@ 2009-08-08 1:11 Andreas Schwab
2009-08-08 13:05 ` Hin-Tak Leung
2009-08-09 2:56 ` Nicolas Pitre
0 siblings, 2 replies; 12+ messages in thread
From: Andreas Schwab @ 2009-08-08 1:11 UTC (permalink / raw)
To: Nicolas Pitre; +Cc: Hin-Tak Leung, git
Nicolas Pitre <nico@cam.org> writes:
> It appears that the git installation serving clone requests for
> git://gcc.gnu.org/git/gcc.git generates lots of unreferenced objects. I
> just cloned it and the pack I was sent contains 1383356 objects (can be
> determined with 'git show-index < .git/objects/pack/*.idx | wc -l').
> However, there are only 978501 actually referenced objects in that
> cloned repository ( 'git rev-list --all --objects | wc -l'). That makes
> for 404855 useless objects in the cloned repository.
Those objects are not useless. They are referenced by the remote refs
on the remote side, which are not fetched by default. If you clone a
mirror of the repository you'll see no unreferenced objects.
Andreas.
--
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: git gc expanding packed data?
2009-08-08 1:11 Andreas Schwab
@ 2009-08-08 13:05 ` Hin-Tak Leung
2009-08-08 13:25 ` Andreas Schwab
2009-08-09 2:56 ` Nicolas Pitre
1 sibling, 1 reply; 12+ messages in thread
From: Hin-Tak Leung @ 2009-08-08 13:05 UTC (permalink / raw)
To: Andreas Schwab; +Cc: Nicolas Pitre, git
On Sat, Aug 8, 2009 at 2:11 AM, Andreas Schwab<schwab@linux-m68k.org> wrote:
> Nicolas Pitre <nico@cam.org> writes:
>
>> It appears that the git installation serving clone requests for
>> git://gcc.gnu.org/git/gcc.git generates lots of unreferenced objects. I
>> just cloned it and the pack I was sent contains 1383356 objects (can be
>> determined with 'git show-index < .git/objects/pack/*.idx | wc -l').
>> However, there are only 978501 actually referenced objects in that
>> cloned repository ( 'git rev-list --all --objects | wc -l'). That makes
>> for 404855 useless objects in the cloned repository.
>
> Those objects are not useless. They are referenced by the remote refs
> on the remote side, which are not fetched by default. If you clone a
> mirror of the repository you'll see no unreferenced objects.
>
> Andreas.
>
> --
> Andreas Schwab, schwab@linux-m68k.org
> GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
> "And now for something completely different."
>
Thanks... It is a difference between svn and git mentality probably -
one only pushes reasonably reliable code to a public git repository,
whereas anything transient is recorded in svn - I think many of the
unreferenced objects are svn user-branches (which are probably of use
to people who intend to work on gcc for fairly extended periods,
rather than casual users like me).
The case with gcc is probably quite extreme - many user branches, and
very large code base - but is there anything on the git side with git
gc which can lessen this kind of pathological behavior (expanding
packs)?
Thanks a lot for the explanation and the discussion.
Hin-Tak
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: git gc expanding packed data?
2009-08-08 13:05 ` Hin-Tak Leung
@ 2009-08-08 13:25 ` Andreas Schwab
0 siblings, 0 replies; 12+ messages in thread
From: Andreas Schwab @ 2009-08-08 13:25 UTC (permalink / raw)
To: Hin-Tak Leung; +Cc: Nicolas Pitre, git
Hin-Tak Leung <hintak.leung@gmail.com> writes:
> Thanks... It is a difference between svn and git mentality probably -
It is just that the remote is a git-svn tree, with only a few branches
created as local branches.
> The case with gcc is probably quite extreme - many user branches, and
> very large code base - but is there anything on the git side with git
> gc which can lessen this kind of pathological behavior (expanding
> packs)?
If you fetch all refs, not only refs/heads/*, all objects will be
referenced.
Andreas.
--
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: git gc expanding packed data?
2009-08-08 1:11 Andreas Schwab
2009-08-08 13:05 ` Hin-Tak Leung
@ 2009-08-09 2:56 ` Nicolas Pitre
2009-08-09 7:43 ` Andreas Schwab
1 sibling, 1 reply; 12+ messages in thread
From: Nicolas Pitre @ 2009-08-09 2:56 UTC (permalink / raw)
To: Andreas Schwab; +Cc: Hin-Tak Leung, git
On Sat, 8 Aug 2009, Andreas Schwab wrote:
> Nicolas Pitre <nico@cam.org> writes:
>
> > It appears that the git installation serving clone requests for
> > git://gcc.gnu.org/git/gcc.git generates lots of unreferenced objects. I
> > just cloned it and the pack I was sent contains 1383356 objects (can be
> > determined with 'git show-index < .git/objects/pack/*.idx | wc -l').
> > However, there are only 978501 actually referenced objects in that
> > cloned repository ( 'git rev-list --all --objects | wc -l'). That makes
> > for 404855 useless objects in the cloned repository.
>
> Those objects are not useless. They are referenced by the remote refs
> on the remote side, which are not fetched by default. If you clone a
> mirror of the repository you'll see no unreferenced objects.
If you do a clone using the git:// protocol and the server sends you
only the ref for the trunk branch, then it should send you only objects
reachable from that branch. Any extra objects sent by the server are
useless to me and wastes my and everyone else's bandwidth, and on my
next repack those objects are pruned anyway. The point of the git
protocol is _not_ necessarily to send a copy of the remote pack file
over, even during a clone.
Nicolas
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: git gc expanding packed data?
2009-08-09 2:56 ` Nicolas Pitre
@ 2009-08-09 7:43 ` Andreas Schwab
0 siblings, 0 replies; 12+ messages in thread
From: Andreas Schwab @ 2009-08-09 7:43 UTC (permalink / raw)
To: Nicolas Pitre; +Cc: Hin-Tak Leung, git
Nicolas Pitre <nico@cam.org> writes:
> If you do a clone using the git:// protocol and the server sends you
> only the ref for the trunk branch,
A clone will fetch all branches from refs/heads/*.
> then it should send you only objects reachable from that branch.
Apparantly this does not work. I'd guess the extra objects are needed
due to the delta compression.
Andreas.
--
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: git gc expanding packed data?
2009-08-05 22:39 ` Nicolas Pitre
@ 2009-08-11 10:17 ` Hin-Tak Leung
2009-08-11 21:33 ` Nicolas Pitre
0 siblings, 1 reply; 12+ messages in thread
From: Hin-Tak Leung @ 2009-08-11 10:17 UTC (permalink / raw)
To: Nicolas Pitre; +Cc: git
On Wed, Aug 5, 2009 at 11:39 PM, Nicolas Pitre<nico@cam.org> wrote:
> On Tue, 4 Aug 2009, Hin-Tak Leung wrote:
>
>> I cloned gcc's git about a week ago to work on some problems I have
>> with gcc on minor platforms, just plain 'git clone
>> git://gcc.gnu.org/git/gcc.git gcc' .and ran gcc fetch about daily, and
>> 'git rebase origin' from time to time. I don't have local changes,
>> just following and monitoring what's going on in gcc. So after a week,
>> I thought I'd do a git gc . Then it goes very bizarre.
>>
>> Before I start 'git gc', .The whole of .git was about 700MB and
>> git/objects/pack was a bit under 600MB, with a few other directories
>> under .git/objects at 10's of K's and a few 30000-40000K's, and the
>> checkout was, well, the size of gcc source code. But after I started
>> git gc, the message stays in the 'counting objects' at about 900,000
>> for a long time, while a lot of directories under .git/objects/ gets a
>> bit large, and .git blows up to at least 7GB with a lot of small files
>> under .git/objects/*/, before seeing as I will run out of disk space,
>> I kill the whole lot and ran git clone again, since I don't have any
>> local change and there is nothing to lose.
>>
>> I am running git version 1.6.2.5 (fedora 11). Is there any reason why
>> 'git gc' does that?
>
> There is probably a reason, although a bad one for sure.
>
> Well... OK.
>
> It appears that the git installation serving clone requests for
> git://gcc.gnu.org/git/gcc.git generates lots of unreferenced objects. I
> just cloned it and the pack I was sent contains 1383356 objects (can be
> determined with 'git show-index < .git/objects/pack/*.idx | wc -l').
> However, there are only 978501 actually referenced objects in that
> cloned repository ( 'git rev-list --all --objects | wc -l'). That makes
> for 404855 useless objects in the cloned repository.
>
> Now git has a safety mechanism to _not_ delete unreferenced objects
> right away when running 'git gc'. By default unreferenced objects are
> kept around for a period of 2 weeks. This is to make it easy for you to
> recover accidentally deleted branches or commits, or to avoid a race
> where a just-created object in the process of being but not yet
> referenced could be deleted by a 'git gc' process running in parallel.
>
> So to give that grace period to packed but unreferenced objects, the
> repack process pushes those unreferenced objects out of the pack into
> their loose form so they can be aged and eventually pruned. Objects
> becoming unreferenced are usually not that many though. Having 404855
> unreferenced objects is quite a lot, and being sent those objects in the
> first place via a clone is stupid and a complete waste of network
> bandwidth.
>
> Anyone has an idea of the git version running on gcc.gnu.org? It is
> certainly buggy and needs fixing.
>
> Anyway... To solve your problem, you simply need to run 'git gc' with
> the --prune=now argument to disable that grace period and get rid of
> those unreferenced objects right away (safe only if no other git
> activities are taking place at the same time which should be easy to
> ensure on a workstation). The resulting .git/objects directory size
> will shrink to about 441 MB. If the gcc.gnu.org git server was doing
> its job properly, the size of the clone transfer would also be
> significantly smaller, meaning around 414 MB instead of the current 600+
> MB.
>
> And BTW, using 'git gc --aggressive' with a later git version (or
> 'git repack -a -f -d --window=250 --depth=250') gives me a .git/objects
> directory size of 310 MB, meaning that the actual repository with all
> the trunk history is _smaller_ than the actual source checkout. If that
> repository was properly repacked on the server, the clone data transfer
> would be 283 MB. This is less than half the current clone transfer
> size.
>
>
> Nicolas
>
'git gc --prune=now' does work, but 'git gc --prune=now --aggressive'
(before) and 'git gc --aggressive' (after) both create very large
(>2GB; I stopped it) packs from the ~400MB-600MB packed objects. I
noted that you specifically wrote 'with a later git version' -
presumably there is a some sort of a known and fixed issue there? Just
curious.
I guess --aggressive doesn't always save space...
Hin-Tak
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: git gc expanding packed data?
2009-08-11 10:17 ` Hin-Tak Leung
@ 2009-08-11 21:33 ` Nicolas Pitre
2009-08-12 14:45 ` Hin-Tak Leung
0 siblings, 1 reply; 12+ messages in thread
From: Nicolas Pitre @ 2009-08-11 21:33 UTC (permalink / raw)
To: Hin-Tak Leung; +Cc: git
On Tue, 11 Aug 2009, Hin-Tak Leung wrote:
> On Wed, Aug 5, 2009 at 11:39 PM, Nicolas Pitre<nico@cam.org> wrote:
> > Anyway... To solve your problem, you simply need to run 'git gc' with
> > the --prune=now argument to disable that grace period and get rid of
> > those unreferenced objects right away (safe only if no other git
> > activities are taking place at the same time which should be easy to
> > ensure on a workstation). The resulting .git/objects directory size
> > will shrink to about 441 MB. If the gcc.gnu.org git server was doing
> > its job properly, the size of the clone transfer would also be
> > significantly smaller, meaning around 414 MB instead of the current 600+
> > MB.
> >
> > And BTW, using 'git gc --aggressive' with a later git version (or
> > 'git repack -a -f -d --window=250 --depth=250') gives me a .git/objects
> > directory size of 310 MB, meaning that the actual repository with all
> > the trunk history is _smaller_ than the actual source checkout. If that
> > repository was properly repacked on the server, the clone data transfer
> > would be 283 MB. This is less than half the current clone transfer
> > size.
> >
> >
> > Nicolas
> >
>
> 'git gc --prune=now' does work, but 'git gc --prune=now --aggressive'
> (before) and 'git gc --aggressive' (after) both create very large
> (>2GB; I stopped it) packs from the ~400MB-600MB packed objects. I
> noted that you specifically wrote 'with a later git version' -
> presumably there is a some sort of a known and fixed issue there? Just
> curious.
>From git v1.6.3 the --aggressive switch makes for 'git repack' to be
called with --window=250 --depth=250, meaning the equivalent of:
git repack -a -d -f --window=250 --depth=250
Do you still get a huge pack with the above?
> I guess --aggressive doesn't always save space...
If so that is (and was) a bug.
Nicolas
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: git gc expanding packed data?
2009-08-11 21:33 ` Nicolas Pitre
@ 2009-08-12 14:45 ` Hin-Tak Leung
2009-08-12 15:35 ` Nicolas Pitre
0 siblings, 1 reply; 12+ messages in thread
From: Hin-Tak Leung @ 2009-08-12 14:45 UTC (permalink / raw)
To: Nicolas Pitre; +Cc: git
On Tue, Aug 11, 2009 at 10:33 PM, Nicolas Pitre<nico@cam.org> wrote:
<snipped>
> From git v1.6.3 the --aggressive switch makes for 'git repack' to be
> called with --window=250 --depth=250, meaning the equivalent of:
>
> git repack -a -d -f --window=250 --depth=250
>
> Do you still get a huge pack with the above?
>
>> I guess --aggressive doesn't always save space...
>
> If so that is (and was) a bug.
I tried 'git repack -a -d -f --window=250 --depth=250' with 1.6.2.5
(fc11.x86_64) and it took half a day, swallowed up all the memory -
3GB virtual & 1.3GB resident - and finally the kernel oom killer
killed it at a last message of (601460/957910). Left no temp files.
Would git 1.6.3 use less memory? :-(
Hin-Tak
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: git gc expanding packed data?
2009-08-12 14:45 ` Hin-Tak Leung
@ 2009-08-12 15:35 ` Nicolas Pitre
2009-08-13 17:31 ` Hin-Tak Leung
0 siblings, 1 reply; 12+ messages in thread
From: Nicolas Pitre @ 2009-08-12 15:35 UTC (permalink / raw)
To: Hin-Tak Leung; +Cc: git
On Wed, 12 Aug 2009, Hin-Tak Leung wrote:
> On Tue, Aug 11, 2009 at 10:33 PM, Nicolas Pitre<nico@cam.org> wrote:
> <snipped>
>
> > From git v1.6.3 the --aggressive switch makes for 'git repack' to be
> > called with --window=250 --depth=250, meaning the equivalent of:
> >
> > git repack -a -d -f --window=250 --depth=250
> >
> > Do you still get a huge pack with the above?
> >
> >> I guess --aggressive doesn't always save space...
> >
> > If so that is (and was) a bug.
>
> I tried 'git repack -a -d -f --window=250 --depth=250' with 1.6.2.5
> (fc11.x86_64) and it took half a day, swallowed up all the memory -
> 3GB virtual & 1.3GB resident - and finally the kernel oom killer
> killed it at a last message of (601460/957910). Left no temp files.
> Would git 1.6.3 use less memory? :-(
Probably not. However you should try:
git config pack.deltaCacheSize 1
That limits the delta cache size to one byte (effectively disabling it)
instead of the default of 0 which means unlimited. With that I'm able
to repack that repository using the above git repack command on an
x86-64 system with 4GB of RAM and using 4 threads (this is a quad core).
Resident memory usage grows to nearly 3.3GB though.
If your machine is SMP and you don't have sufficient RAM then you can
reduce the number of threads to only one:
git config pack.threads 1
Additionally, you can further limit memory usage with the
--window-memory argument to 'git repack'. For example, using
--window-memory=128M should keep a reasonable upper bound on the delta
search memory usage although this can result in less optimal delta match
if the repo contains lots of large files (and I think this is the case
for the gcc repo).
Nicolas
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: git gc expanding packed data?
2009-08-12 15:35 ` Nicolas Pitre
@ 2009-08-13 17:31 ` Hin-Tak Leung
0 siblings, 0 replies; 12+ messages in thread
From: Hin-Tak Leung @ 2009-08-13 17:31 UTC (permalink / raw)
To: Nicolas Pitre; +Cc: git
On Wed, Aug 12, 2009 at 4:35 PM, Nicolas Pitre<nico@cam.org> wrote:
> On Wed, 12 Aug 2009, Hin-Tak Leung wrote:
>
>> On Tue, Aug 11, 2009 at 10:33 PM, Nicolas Pitre<nico@cam.org> wrote:
>> <snipped>
>>
>> > From git v1.6.3 the --aggressive switch makes for 'git repack' to be
>> > called with --window=250 --depth=250, meaning the equivalent of:
>> >
>> > git repack -a -d -f --window=250 --depth=250
>> >
>> > Do you still get a huge pack with the above?
>> >
>> >> I guess --aggressive doesn't always save space...
>> >
>> > If so that is (and was) a bug.
>>
>> I tried 'git repack -a -d -f --window=250 --depth=250' with 1.6.2.5
>> (fc11.x86_64) and it took half a day, swallowed up all the memory -
>> 3GB virtual & 1.3GB resident - and finally the kernel oom killer
>> killed it at a last message of (601460/957910). Left no temp files.
>> Would git 1.6.3 use less memory? :-(
>
> Probably not. However you should try:
>
> git config pack.deltaCacheSize 1
>
> That limits the delta cache size to one byte (effectively disabling it)
> instead of the default of 0 which means unlimited. With that I'm able
> to repack that repository using the above git repack command on an
> x86-64 system with 4GB of RAM and using 4 threads (this is a quad core).
> Resident memory usage grows to nearly 3.3GB though.
>
> If your machine is SMP and you don't have sufficient RAM then you can
> reduce the number of threads to only one:
>
> git config pack.threads 1
>
> Additionally, you can further limit memory usage with the
> --window-memory argument to 'git repack'. For example, using
> --window-memory=128M should keep a reasonable upper bound on the delta
> search memory usage although this can result in less optimal delta match
> if the repo contains lots of large files (and I think this is the case
> for the gcc repo).
>
>
> Nicolas
>
Thanks. I used the two git config pack.* commands, and
git repack -a -d -f --window=250 --depth=250
finished after 8 hours (dual core Turion, 2GB RAM + 2GB swap). The
pack directory went from 457MB to 308MB.
Thanks a lot for the advice - learned a few interesting things about
git on the way :-).
Hin-Tak
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2009-08-13 17:31 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-04 20:25 git gc expanding packed data? Hin-Tak Leung
2009-08-05 22:39 ` Nicolas Pitre
2009-08-11 10:17 ` Hin-Tak Leung
2009-08-11 21:33 ` Nicolas Pitre
2009-08-12 14:45 ` Hin-Tak Leung
2009-08-12 15:35 ` Nicolas Pitre
2009-08-13 17:31 ` Hin-Tak Leung
-- strict thread matches above, loose matches on Subject: below --
2009-08-08 1:11 Andreas Schwab
2009-08-08 13:05 ` Hin-Tak Leung
2009-08-08 13:25 ` Andreas Schwab
2009-08-09 2:56 ` Nicolas Pitre
2009-08-09 7:43 ` Andreas Schwab
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).