5 Apr
2012
5 Apr
'12
7:08 a.m.
When you use git clone --depth 0, it tracks each branch head, so those 1500 branches mean that almost everything is downloaded.
It's rather a matter of unused git object pruning. With: git clone --mirror git://git.koha-community.org/koha You get a repo whose size is 280M. Then with: git gc --aggressive --prune=now You drop repo size to 138M. I suggest to do some maintenance on community repository. -- Frédéric DEMIANS http://www.tamil.fr/u/fdemians.html