up vote 75 down vote favorite
65
share [g+] share [fb]

Consider the following scenario: I have developed small experimental project A in its own git repo. It has now matured, and I'd like A to be part of larger project B, which has its own big repository. I'd now like to add A as a subdirectory of B.

How do I merge A into B, without losing history on any side?

link|improve this question

feedback

6 Answers

up vote 76 down vote accepted

There are two possible solutions:

Submodules

Either copy repository A into separate directory in larger project B, or (perhaps better) clone repository A into subdirectory in project B. Then use git submodule to make this repository a submodule of a repository B.

This is a good solution for loosely-coupled repositories, where development in repository A continues, and major portion of development is separate stand-alone development in A. See also SubmoduleSupport and GitSubmoduleTutorial pages on Git Wiki.

Subtree merge

You can merge repository A into a subdirectory of a project B using the subtree merge strategy. This is described in Subtree Merging and You by Markus Prinz.

git remote add -f Bproject /path/to/B
git merge -s ours --no-commit Bproject/master
git read-tree --prefix=dir-B/ -u Bproject/master
git commit -m "Merge B project as our subdirectory"
git pull -s subtree Bproject master

Or you can use git subtree tool (repository on github) by apenwarr (Avery Pennarun), announced for example in his blog post A new alternative to git submodules: git subtree.


I think in your case (A is to be part of larger project B) the correct solution would be to use subtree merge

link|improve this answer
subtree merging and you blog link is broken – James Nov 29 '10 at 5:38
@James: which blog link is broken? – Jakub Narębski Nov 30 '10 at 1:34
I found everything I needed to put my local repo in a subdirectory of a remote repo following the "how to use the subtree merge strategy" HOWTO. – davenpcj Feb 23 '11 at 7:44
hmm 'git pull -s subtree Bproject master' doesn't update the Bproject/master tag in the history to the new Bproject HEAD – Trass3r Jul 20 '11 at 14:53
feedback

The submodule approach is good if you want to maintain the project separately. However, if you really want to merge both projects into the same repository, then you have a bit more work to do.

The first thing would be to use git filter-branch to rewrite the names of everything in the second repository to be in the subdirectory where you would like them to end up. So instead of foo.c, bar.html, you would have projb/foo.c and projb/bar.html.

Then, you should be able to do something like the following:

git remote add projb [wherever]
git pull projb

The git pull will do a git fetch followed by a git merge. There should be no conflicts, if the repository you're pulling to does not yet have a projb/ directory.

Further searching indicates that something similar was done to merge gitk into git. Junio C Hamano writes about it here: http://www.mail-archive.com/git@vger.kernel.org/msg03395.html

link|improve this answer
3  
Thanks a lot, that's exactly what I wanted to do. – static_rtti Sep 15 '09 at 8:41
1  
Not having tried this myself, the git pull step may complain about the inability to find a common ancestor. Some other details may need to be ironed out too. – Greg Hewgill Sep 15 '09 at 8:43
3  
subtree merge would be better solution, and do not require rewriting history of included project – Jakub Narębski Sep 15 '09 at 9:18
faving the question and the answer! – Eimantas Sep 15 '09 at 9:33
Works perfectly. Found all the conflicts and everything. – Tom Dignan Nov 8 '11 at 14:59
feedback

If both repositories have same kind of files (like two Rails repositories for different projects), fetching the repository with git-fetch

git fetch git://repository.url/repo.git master:branch_name

and then merging it to current repository

git merge branch_name

Would let you have conflicts and “manually” solve those for example with git-mergetool. kdiff3 can be used solely with keyboard, so 5 conflict file takes when reading the code just few minutes.

Remember to finish the merge with git-commit

git commit

At this point, the remote repository has been merged to current repository and conflicts solved like you wanted.

link|improve this answer
feedback

You got to project B's directory, create a directory for project A, checkout the project A to that directory and define project A as project's B git submodule.

link|improve this answer
feedback

I had a similar challenge, but in my case, we had developed one version of the codebase in repo A, then cloned that into a new repo, repo B, for the new version of the product. After fixing some bugs in repo A, we needed to FI the changes into repo B. Ended up doing the following:

  1. Adding a remote to repo B that pointed to repo A (git remote add...)
  2. Pulling the current branch (we were not using master for bug fixes) (git pull remoteForRepoA bugFixBranch)
  3. Pushing merges to github

Worked a treat :)

link|improve this answer
feedback

Similar to @Smar but uses file system paths, set in PRIMARY and SECONDARY:

PRIMARY=~/Code/project1
SECONDARY=~/Code/project2
cd $PRIMARY
git remote add test $SECONDARY && git fetch test
git merge test/master

Then you manually merge.

(adapted from post by Anar Manafov)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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