Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Our git repositories started out as parts of a single monster svn repository where the individual projects each had their own tree like so:

project1/branches
        /tags
        /trunk
project2/branches
        /tags
        /trunk

Obviously, it was pretty easy to move files from one to another with 'svn mv'. In git, each project is in its own repository, and today I was asked to move a subdirectory from project2 to project1. I did something like this:

$ git clone project2 
$ cd project2
$ git filter-branch --subdirectory-filter deeply/buried/java/source/directory/A -- --all
$ git remote rm origin  # so I don't accidentally the repo ;-)
$ mkdir -p deeply/buried/different/java/source/directory/B
$ for f in *.java; do 
>  git mv $f deeply/buried/different/java/source/directory/B
>  done
$ git commit -m "moved files to new subdirectory"
$ cd ..
$ git clone project1
$ cd project1
$ git remote add p2 ../project2
$ git fetch p2
$ git branch p2 remotes/p2/master
$ git merge p2 
$ git remote rm p2
$ git push

But that seems pretty convoluted. Is there a better way to do this sort of thing in general? Or have I adopted the right approach?

share|improve this question
1  
+1 for great question, and for not accidentally the repo. :-) – Thanatos Jun 14 '10 at 17:14
I wonder why you don't do git fetch p2 && git merge p2 instead of git fetch p2 && git branch .. && git merge p2? Edit: alright, it looks like you want to get the changes in a new branch named p2, not the current branch. – Lekensteyn Dec 21 '11 at 22:25
To only bring over the commits from the other repo which involves the directory you are moving, you should add --prune-empty to the git filter-branch – Martin Apr 17 '12 at 10:01
I also found this thread in case the files you moved out from project2 had a lot of history and you wanted to permanently erase all records of them, since you have the history in a second project: dalibornasevic.com/posts/… – Andrew Mao Dec 29 '12 at 21:00

5 Answers

up vote 13 down vote accepted

Yep, hitting on the subdirectory-filter of filter-branch was key. The fact that you used it essentially proves there's no easier way - you had no choice but to rewrite history, since you wanted to end up with only a (renamed) subset of the files, and this by definition changes the hashes. Since none of the standard commands (e.g. pull) rewrite history, there's no way you could use them to accomplish this.

You could refine the details, of course - some of your cloning and branching wasn't strictly necessary - but the overall approach is good! It's a shame it's complicated, but of course, the point of git isn't to make it easy to rewrite history.

share|improve this answer
what if your file has moved through several directories, and now resides in one--will subdirectory-filter still work? (i.e. I'm assuming that if I just want to move one file, I can move it to its own subdirectory and this will work?) – rogerdpack Apr 3 '12 at 16:17
@rogerdpack: No, this won't follow the file through renames. I believe it will appear to have been created at the point it was moved into the selected subdirectory. If you want to select just one file, have a look at --index-filter in the filter-branch manpage. – Jefromi Apr 3 '12 at 16:48

If your history is sane, you can take the commits out as patch and apply them in the new repository:

cd repository
git log --pretty=email --patch-with-stat --reverse -- path/to/file_or_folder > patch
cd ../another_repository
git am < ../repository/patch 

# Or in one line
git log --pretty=email --patch-with-stat --reverse -- path/to/file_or_folder | (cd /path/to/new_repository && git am)

(Taken from Exherbo’s docs)

share|improve this answer
3  
For the three or 4 files I needed to move this was a much more simple solution than the accepted answer. I ended up trimming the paths out in the patch file with find-replace to get it to fit into my new repo's directory structure. – Rian Sanderson Oct 12 '12 at 20:29
1  
I have added options so that binary files (like images) are also properly migrated: git log --pretty=email --patch-with-stat --full-index --binary --reverse -- client > patch. Works without problems AFAICT. – Emmanuel Touzery Apr 23 at 9:21

Take a look at the "coolest merge ever". The gitk GUI which is included in Git was originally developed independently, and later merged into Git, preserving all of its history. I routinely re-read how it is done, and I still don't fully understand it, but it's a great example of Git's power.

share|improve this answer

This is something I'm interested in as well. My git-fu isn't as good as your's though, and filter-branch still scares me. I would have done it by generating a set of patches and then applying them, using the --directory argument to git apply. But that way is much more of a pain than what you did.

Oh, have you considered looking into submodules? That might be what you want, although I've never used them myself.

share|improve this answer

That sounds like a reasonable approach to me; I can't think of any obvious way to significantly improve your method. It's nice that Git actually does make this easy (I wouldn't want to try to move a directory of files between different repositories in Subversion, for example).

share|improve this answer
I also would not want to try moving a directory between two different svn repos! (I'm imagining some nightmare involving svnadmin dump and svn dumpfilter, bleah.) – ebneter Sep 2 '09 at 19:40
@ebneter - I've done this (moved history from one svn repo to another) manually, using shell scripts. Basically I replayed the history (diffs, commit logs messages) from particular files/dirs into a second repository. – Adam Monsen Nov 10 '11 at 14:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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