From: Pauli V. <pa...@ik...> - 2011-01-27 17:57:47
|
Thu, 27 Jan 2011 12:39:48 -0500, Darren Dale wrote: [clip] > Me too. I just posted the latest version of the repository to > github.com/darrendale/matplotlib.git . Its ~42MB, but it has a bunch of > unreachable objects. As soon as we figure out how to git rid of them, I > think we will be ready to freeze the svn repo and wrap this up. Unreachable from where? How do you know there are unreachable objects? Note that the snippet git fsck --unreachable HEAD $(git for-each-ref --format="%(objectname)" refs/heads) only checks for objects unreachable from branches (by definition, stuff under refs/heads). However, there's also other stuff under refs/: tags and hidden branches. Especially the postprocess.sh script hides some branches. To see all that is there, check the output from git for-each-ref -- Pauli Virtanen |