vote up 3 vote down star
1

I currently have a git repository that I imported from svn a while ago name school. Inside this school repository I have a folder for each of my classes.

I can't seem how to take this one repository and split it into a repository for each class without losing the entire history of the class, which I would prefer not to do.

Suggestions?

flag

2 Answers

vote up 4 vote down check

git filter-branch is the way to go. Make a copy of the repo for each subdirectory, then in each copy run a line like this replacing "myclassname" with your actual class name:

git filter-branch --subdirectory-filter myclassname -- --all
link|flag
1  
This worked beautifully thanks. I turned it into a shell script which you can see here: github.com/icco/git-explode – icco Oct 12 at 5:31
Nice one, glad I helped :-) – rq Oct 12 at 14:03
It's spelled "separate". – jleedev Oct 13 at 7:03
Perhaps also '--remove-empty' to remove commits which do not touch 'myclassname' subdirectory... unless it is turned on by '--subdirectory-filter'. – Jakub NarÄ™bski Oct 14 at 8:46
The flag is --prune-empty - it isn't turned on with the subdir filter. – rq Oct 14 at 11:39
vote up -1 vote down

Run the following command

git log -u <path>

This will give you a list of changesets (including diff) for each changeset in the specified folder.

From here, you can write a script to parse that output of git log and run each patch on a new repository, keeping the changesets and author info.

Bit of a hack, but it will work.

link|flag
There has got to be a better way of doing this than that. I have five years worth of commits... – icco Oct 12 at 4:38

Your Answer

Get an OpenID
or

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