単純に2つのリポジトリを接着して、外部依存関係を管理するのではなく、ずっとそうであるように見せようとすると、答えははるかに簡単になります。リモートを古いリポジトリに追加し、それらを新しいマスターにマージし、ファイルとフォルダーをサブディレクトリに移動し、移動をコミットし、すべての追加のリポジトリについて繰り返すだけです。サブモジュール、サブツリーのマージ、およびファンシーなリベースは、少し異なる問題を解決することを目的としており、私がやろうとしていたことには適していません。
以下は、2つのリポジトリを接着するPowershellスクリプトの例です。
# Assume the current directory is where we want the new repository to be created
# Create the new repository
git init
# Before we do a merge, we have to have an initial commit, so we'll make a dummy commit
git commit --allow-empty -m "Initial dummy commit"
# Add a remote for and fetch the old repo
git remote add -f old_a <OldA repo URL>
# Merge the files from old_a/master into new/master
git merge old_a/master --allow-unrelated-histories
# Move the old_a repo files and folders into a subdirectory so they don't collide with the other repo coming later
mkdir old_a
dir -exclude old_a | %{git mv $_.Name old_a}
# Commit the move
git commit -m "Move old_a files into subdir"
# Do the same thing for old_b
git remote add -f old_b <OldB repo URL>
git merge old_b/master --allow-unrelated-histories
mkdir old_b
dir –exclude old_a,old_b | %{git mv $_.Name old_b}
git commit -m "Move old_b files into subdir"
明らかにそれを行う場合は、代わりにold_bをold_aにマージして(新しい結合されたリポジトリになります)、スクリプトを適切に変更します。
進行中の機能ブランチも持ち越したい場合は、これを使用します。
# Bring over a feature branch from one of the old repos
git checkout -b feature-in-progress
git merge -s recursive -Xsubtree=old_a old_a/feature-in-progress
これはプロセスの明白でない部分です。これはサブツリーマージではなく、ターゲットの名前を変更したことをGitに通知し、Gitがすべてを正しく整列させるのに役立つ、通常の再帰的マージに対する引数です。
ここでもう少し詳しく説明します。