vote up 31 vote down star
47

I have a git repository which contains a number of subdirectories. Now I have found that one of the subdirectories is unrelated to the other and should be detached to a separate repository.

How can i do this while keeping the history of the files within the subdirectory? I guess I could make a clone and remove the unwanted parts of each clone, but I suppose this would give me the complete tree when checking out an older revision etc. This might be acceptable, but I would prefer to be able to pretend that the two repositories doesn't have a shared history.

Any suggestions?

Just to make it clear, I have the following structure:

XYZ/
    .git/
    XY1/
    ABC/
    XY2/

But would like this instead:

XYZ/
    .git/
    XY1/
    XY2/
ABC/
    .git/
flag

6 Answers

vote up 36 vote down check

You want to clone your repository and then use git filter-branch to mark everything but the subdirectory you want in your new repo to be garbage-collected. To clone your local repository:

 $ git clone --no-hardlinks /XYZ /ABC

The --no-hardlinks switch makes git use real file copies instead of hardlinking when cloning a local repository. The garbage collection and pruning actions will only work on blobs (file contents), not links.

Then just filter-branch and reset to exclude the other files, so they can be pruned:

 $ git filter-branch --subdirectory-filter ABC HEAD
 $ git reset --hard
 $ git gc --aggressive
 $ git prune

and now you have a local git repository of the ABC sub-directory with all its history preserved.

EDIT -- For most uses, git filter-branch should have the added parameter -- --all. (Yes that's really dash dash space dash dash all. This needs to be the last parameters for the command.) As Matli discovered, this keeps the project branches and tags included in the the new repo.

link|flag
1  
Very good answer. Thanks! And to really get exactly what I wanted, I added "-- --all" to the filter-branch command. – matli Dec 12 '08 at 9:17
Good point! That would apply to most people using git filter-branch this way. In my case, I was segregating a library which had its own series of release numbers in tags, so I didn't want the project tags in my new repo. I'll edit that into the answer. – Paul Dec 15 '08 at 18:51
As of today, filter-branch is not supported on Windows. It looks like it is coming soon though. Check the msysgit discussion group (at google groups) for details. – Osman Apr 1 at 15:02
vote up 6 vote down

Paul's answer above creates a new repository containing /ABC, but does not remove /ABC from within /XYZ. The following command will remove /ABC from within /XYZ:

git filter-branch --tree-filter "rm -rf ABC" --prune-empty HEAD

Of course, test it in a 'clone --no-hardlinks' repository first, and follow it with the reset, gc and prune commands Paul lists.

link|flag
2  
make that git filter-branch --index-filter "git rm -r -f --cached --ignore-unmatch ABC" --prune-empty HEAD and it will be much faster. index-filter works on the index while tree-filter has to checkout and stage everything for every commit. – fmarc Sep 17 at 19:58
vote up 0 vote down

You might need something like "git reflog expire --expire=now --all" before the garbage collection to actually clean the files out. git filter-branch just removes references in the history, but doesn't remove the reflog entries that hold the data. Of course, test this first.

My disk usage dropped dramatically in doing this, though my initial conditions were somewhat different. Perhaps --subdirectory-filter negates this need, but I doubt it.

link|flag
vote up 0 vote down

To add to Paul's answer, I found that to ultimately recover space, I have to push HEAD to a clean repository and that trims down the size of the .git/objects/pack directory.

i.e.

$ mkdir ...ABC.git
$ cd ...ABC.git
$ git init --bare

After the gc prune, also do:

$ git push ...ABC.git HEAD

Then you can do

$ git clone ...ABC.git

and the size of ABC/.git is reduced

Actually, some of the time consuming steps (e.g. git gc) aren't needed with the push to clean repository, i.e.:

$ git clone --no-hardlinks /XYZ /ABC
$ git filter-branch --subdirectory-filter ABC HEAD
$ git reset --hard
$ git push ...ABC.git HEAD
link|flag
vote up 0 vote down

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
    
link|flag
vote up -2 vote down

I ran this command on a repository imported from Perforce and it did not prune my repository only the directory I wanted. Here is what I started out with:

Application/
           /.git
           /java/
           /test/
           /tools/
                 /starfish
                 /halibut

I wanted:

Application/
           /.git
           /java
           /test

Tools/
     /.git
     /starfish
     /halibut

The command I executed was

git clone --no-hardlinks ./Application ./Tools
cd  Tools
git filter-branch --subdirectory-filter tools HEAD
git reset --hard
git gc --aggressive
git prune

I was left with all of the directories I had before ... any ideas?

link|flag
Post a separate question for this one – Michael Donohue Jul 13 at 22:25

Your Answer

Get an OpenID
or

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