Combining multiple git repositories
Solution 1:
Here's a solution I gave here:
-
First do a complete backup of your phd directory: I don't want to be held responsible for your losing years of hard work! ;-)
$ cp -r phd phd-backup
-
Move the content of
phd/code
tophd/code/code
, and fix the history so that it looks like it has always been there (this uses git's filter-branch command):$ cd phd/code $ git filter-branch --index-filter \ 'git ls-files -s | sed "s#\t#&code/#" | GIT_INDEX_FILE=$GIT_INDEX_FILE.new \ git update-index --index-info && mv $GIT_INDEX_FILE.new $GIT_INDEX_FILE' HEAD
-
Same for the content of
phd/figures
andphd/thesis
(just replacecode
withfigures
andthesis
).Now your directory structure should look like this:
phd |_code | |_.git | |_code | |_(your code...) |_figures | |_.git | |_figures | |_(your figures...) |_thesis |_.git |_thesis |_(your thesis...)
-
Then create a git repository in the root directory, pull everything into it and remove the old repositories:
$ cd phd $ git init $ git pull code $ rm -rf code/code $ rm -rf code/.git $ git pull figures --allow-unrelated-histories $ rm -rf figures/figures $ rm -rf figures/.git $ git pull thesis --allow-unrelated-histories $ rm -rf thesis/thesis $ rm -rf thesis/.git
Finally, you should now have what you wanted:
phd |_.git |_code | |_(your code...) |_figures | |_(your figures...) |_thesis |_(your thesis...)
One nice side to this procedure is that it will leave non-versioned files and directories in place.
Hope this helps.
Just one word of warning though: if your code
directory already has a code
subdirectory or file, things might go very wrong (same for figures
and thesis
of course). If that's the case, just rename that directory or file before going through this whole procedure:
$ cd phd/code
$ git mv code code-repository-migration
$ git commit -m "preparing the code directory for migration"
And when the procedure is finished, add this final step:
$ cd phd
$ git mv code/code-repository-migration code/code
$ git commit -m "final step for code directory migration"
Of course, if the code
subdirectory or file is not versioned, just use mv
instead of git mv
, and forget about the git commit
s.
Solution 2:
git-stitch-repo
will process the output ofgit-fast-export --all --date-order
on the git repositories given on the command-line, and create a stream suitable forgit-fast-import
that will create a new repository containing all the commits in a new commit tree that respects the history of all the source repositories.
Solution 3:
Perhaps, simply (similarly to the previous answer, but using simpler commands) making in each of the separate old repositories a commit that moves the content into a suitably named subdir, e.g.:
$ cd phd/code
$ mkdir code
# This won't work literally, because * would also match the new code/ subdir, but you understand what I mean:
$ git mv * code/
$ git commit -m "preparing the code directory for migration"
and then merging the three separate repos into one new, by doing smth like:
$ cd ../..
$ mkdir phd.all
$ cd phd.all
$ git init
$ git pull ../phd/code
...
Then you'll save your histories, but will go on with a single repo.