Re: [matplotlib-devel] git-svn matplotlib mirror

2011-01-26 Thread Pauli Virtanen
Wed, 26 Jan 2011 13:37:59 +0900, Jae-Joon Lee wrote: [clip] I spend an hour to figure out how we can delete these unreachable objects. But it turned out that the answer seems to be simple. $ git repack -ad The complete magic stanza is: git reflog expire --expire=0 --all git prune git repack

Re: [matplotlib-devel] git-svn matplotlib mirror

2011-01-26 Thread Jae-Joon Lee
On Wed, Jan 26, 2011 at 7:28 PM, Pauli Virtanen p...@iki.fi wrote: The complete magic stanza is: git reflog expire --expire=0 --all git prune git repack -f -a -d git gc --prune=0 Wonderful! With this, I get about 40 MB! Regards, -JJ

Re: [matplotlib-devel] git-svn matplotlib mirror

2011-01-26 Thread Pauli Virtanen
Wed, 26 Jan 2011 20:35:03 +0900, Jae-Joon Lee wrote: On Wed, Jan 26, 2011 at 7:28 PM, Pauli Virtanen p...@iki.fi wrote: The complete magic stanza is: git reflog expire --expire=0 --all git prune git repack -f -a -d git gc --prune=0 Wonderful! With this, I get about 40 MB! Some

Re: [matplotlib-devel] git-svn matplotlib mirror

2011-01-26 Thread Pauli Virtanen
Tue, 25 Jan 2011 18:12:35 -0500, Darren Dale wrote: [clip] Pauli: could I trouble you to have a look at my rules file, maybe you will notice something I overlooked? (https://github.com/darrendale/mpl2git/blob/master/matplotlib.rules) Any other ideas? As an additional check, I'd suggest

Re: [matplotlib-devel] git-svn matplotlib mirror

2011-01-26 Thread Darren Dale
On Wed, Jan 26, 2011 at 6:42 AM, Pauli Virtanen p...@iki.fi wrote: Wed, 26 Jan 2011 20:35:03 +0900, Jae-Joon Lee wrote: On Wed, Jan 26, 2011 at 7:28 PM, Pauli Virtanen p...@iki.fi wrote: The complete magic stanza is: git reflog expire --expire=0 --all git prune git repack -f -a -d git gc

Re: [matplotlib-devel] git-svn matplotlib mirror

2011-01-26 Thread Eric Firing
On 01/25/2011 06:53 PM, Eric Firing wrote: [...] Darren, It looks like at least some of the problem is the origin/unit_support: efiring@manini:~/test/matplotlib.git.ddale$ git checkout origin/unit_support Checking out files: 100% (4514/4514), done. Note: checking out 'origin/unit_support'.

Re: [matplotlib-devel] git-svn matplotlib mirror

2011-01-26 Thread Darren Dale
On Wed, Jan 26, 2011 at 7:44 AM, Darren Dale dsdal...@gmail.com wrote: Last night I noticed that, in the git repo, the commit messages produced by svnmerge.py still contain a lot of svn-specific information. Pauli's conversion script includes a step that filters out two lines at the end of

Re: [matplotlib-devel] git-svn matplotlib mirror

2011-01-26 Thread Benjamin Root
On Wednesday, January 26, 2011, Darren Dale dsdal...@gmail.com wrote: On Wed, Jan 26, 2011 at 7:44 AM, Darren Dale dsdal...@gmail.com wrote: Last night I noticed that, in the git repo, the commit messages produced by svnmerge.py still contain a lot of svn-specific information. Pauli's