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

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?

share|improve this question

11 Answers

up vote 33 down vote accepted

Use git-subtree to import a branch of other repository into your main repository without loosing its history. For example:

git subtree add --prefix=rails git://github.com/rails/rails.git master

This will import the repository's master branch under "rails" directory and you can see all its commits in git log.

share|improve this answer
   
@Brad Mace, the git-subtree repo is now obsolete since it was included into git itself. See github.com/apenwarr/git-subtree/blob/master/… – Semyon Perepelitsa Mar 9 at 0:11
26  
Don't stop reading... much more complete answer below. – Ryan Shillington Apr 9 at 20:31
Here are instructions on how to install Git SubTree (as of June 2013): stackoverflow.com/a/11613541/694469 (and I replaced git co v1.7.11.3 with ... v1.8.3). – KajMagnus Jun 7 at 14:31

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

share|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
1  
This works and seems to preserve the history, but not such that you could use it to diff files or bisect through the merge. Am I missing a step? – jettero May 7 '12 at 12:44
7  
this is incomplete. Yes you get a load of commits, but they no longer refer to the right paths. git log dir-B/somefile won't show anything except the one merge. See Greg Hewgill's answer references this important issue. – artfulrobot Jun 1 '12 at 14:52
2  
If you're trying to simply glue two repositories together, submodules and subtree merges are the wrong tool to use because they don't preserve all of the file history (as other commenters have noted). See stackoverflow.com/questions/13040958/…. – Eric Lee Jan 23 at 0:06
show 9 more comments

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

share|improve this answer
7  
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
1  
I'd like to know how to use git filter-branch to achieve this. In the man page it says about the opposite way around: making subdir/ become the root, but not the other way around. – artfulrobot Jun 1 '12 at 15:11
1  
@artfulrobot: Definitely look at git-subtree for tools that can help do this (git-subtree was recently added to the standard Git distribution, too). – Greg Hewgill Jun 1 '12 at 21:25
show 4 more comments

This Version worked pretty well for me, is shorter and in my opinion a lot cleaner:

git merge different repositories?

basically, just create/have both projects. Go to "newer" one, which in the example is called proj1. Then:

# in proj2:
git remote add proj1 path/to/proj1
git fetch proj1
git merge proj1/master # or whichever branch you want to merge
share|improve this answer
1  
Wonderful! This worked perfectly! – msgambel Jun 25 '12 at 15:52
1  
This was all I needed, in contrast to the incantations of the more popular answers. Thanks! – Dominic Sayers Dec 5 '12 at 10:15
1  
It worked for me also. Simple! – zhon Feb 5 at 9:37
1  
it seems this need a working copy: fatal: This operation must be run in a work tree, i want to merge two bare git repository. – LiuYan 刘研 Apr 24 at 15:20
1  
Nice! Clear and direct to the point method :) – icasimpan May 6 at 2:59

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.

share|improve this answer

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 :)

share|improve this answer

I know it's long after the fact, but I wasn't happy with the other answers I found here, so I wrote this:

me=$(basename $0)

TMP=$(mktemp -d /tmp/$me.XXXXXXXX)
echo 
echo "building new repo in $TMP"
echo
sleep 1

set -e

cd $TMP
mkdir new-repo
cd new-repo
    git init
    cd ..

x=0
while [ -n "$1" ]; do
    repo="$1"; shift
    git clone "$repo"
    dirname=$(basename $repo | sed -e 's/\s/-/g')
    if [[ $dirname =~ ^git:.*\.git$ ]]; then
        dirname=$(echo $dirname | sed s/.git$//)
    fi

    cd $dirname
        git remote rm origin
        git filter-branch --tree-filter \
            "(mkdir -p $dirname; find . -maxdepth 1 ! -name . ! -name .git ! -name $dirname -exec mv {} $dirname/ \;)"
        cd ..

    cd new-repo
        git pull --no-commit ../$dirname
        [ $x -gt 0 ] && git commit -m "merge made by $me"
        cd ..

    x=$(( x + 1 ))
done
share|improve this answer
1  
This was exactly what I was looking for. Thanks! However, I had to change line 22 to: if [[ $dirname =~ ^.*\.git$ ]]; then – heyman Jan 9 at 15:02
^.*blarg$ is wastefully greedy RE. Better to say .blarg$ and skip the front anchor. – jettero Jan 27 at 17:57

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.

share|improve this answer

If you're trying to simply glue two repositories together, submodules and subtree merges are the wrong tool to use because they don't preserve all of the file history (as people have noted on other answers). See this answer here for the simple and correct way to do this.

share|improve this answer

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)

share|improve this answer

When you want to merge three or more projects in a single commit, do the steps as described in the other answers (remote add -f, merge). Then, (soft) reset the index to old head (where no merge happened). Add all files (git add -A) and commit them (message "Merging projects A, B, C, and D into one project). This is now the commit-id of master.

Now, create .git/info/grafts with following content:

<commit-id of master> <list of commit ids of all parents>

Run git filter-branch -- head^..head head^2..head head^3..head. If you have more than three branches, just add as much head^n..head as you have branches. To update tags, append --tag-name-filter cat. Do not always add that, because this might cause a rewrite of some commits. For details see man page of filter-branch, search for "grafts".

Now, your last commit has the right parents associated.

share|improve this answer

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.