show/hide this revision's text 2 Grr. Arg.

I’ve found that in order to properly delete the old history from the new repository, you have to do a little more work after the filter-branch step.

  1. Do the clone and the filter:

    git clone --no-hardlinks foo bar; cd bar
    git filter-branch --subdirectory-filter subdir/you/want
    
  2. Remove every reference to the old history. “origin” was keeping track of your clone, and “original” is where filter-branch saves the old stuff:

    git remote rm origin
    rm -r .git/refs/original/
    git reflog expire --expire=now all
    --all
    
  3. Even now, your history might be stuck in a packfile that fsck won’t touch. Tear it to shreds:

    git gc --aggressive
    
  4. Only now does git-fsck find unused commits! Now git-prune will delete them:

    git prune
    
show/hide this revision's text 1

I’ve found that in order to properly delete the old history from the new repository, you have to do a little more work after the filter-branch step.

  1. Do the clone and the filter:

    git clone --no-hardlinks foo bar; cd bar
    git filter-branch --subdirectory-filter subdir/you/want
    
  2. Remove every reference to the old history. “origin” was keeping track of your clone, and “original” is where filter-branch saves the old stuff:

    git remote rm origin
    rm -r .git/refs/original/
    git reflog expire --expire=now —all
    
  3. Even now, your history might be stuck in a packfile that fsck won’t touch. Tear it to shreds:

    git gc --aggressive
    
  4. Only now does git-fsck find unused commits! Now git-prune will delete them:

    git prune