up vote 4 down vote favorite
1
share [g+] share [fb]

I'm using

git filter-branch --subdirectory-filter dir/name -- --all

to build a repo that only has history relating to that dir/name. Before I do the filter, I clone the original repo (which is very much bigger) into a tmp dir. After the filter-branch, the repo looks just how I want it, with one exception: It seems to still contain all the objects from the original repo even though they're not shown in "git log."

How can I remove all those unwanted objects completely?

I've tried things like:

git reflog expire --expire=now --all
git gc --aggressive --prune=now

It's clear to me that I don't know why they're still there or what it means to remove them, but I'd sure like to. A bit of possibly related information working against me is that I had done a git repack -a on my source repo a while back and it seems to copy that packfile over to the new repo. Seems like I should still be able to do what I want though.

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

filter-branch also keeps backup refs in .git/refs/original, which you'll also have to remove before gc'ing

link|improve this answer
If it's that simple I'm going to be kinda miffed. Do I literally just rm .git/refs/original ? – jettero Apr 2 '09 at 12:08
Well, rm-ing does indeed work (even if there's a better way) and this totally answers my question, thanks. – jettero Apr 2 '09 at 12:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.