現状
独自のリポジトリを持つサブモジュールに変換したいrepo-old
サブディレクトリ sub
が含まれていると呼ばれるリポジトリがあるとしましょう。repo-sub
さらに、元のレポrepo-old
は変更されたレポに変換され、repo-new
すべてのコミットが以前に存在していたサブディレクトリに影響を与えることが意図されています。sub
するコミットは、抽出されたサブモジュールリポジトリの対応するコミットを指すようになります。repo-sub
ます。
さあ変えよう
これはgit filter-branch
、次の2つの手順で実現できます。
- から
repo-old
へのサブディレクトリの抽出repo-sub
(受け入れられた回答ですでに言及されています)
- サブディレクトリ交換
repo-old
するrepo-new
(コミット適切なマッピングを持ちます)
備考:この質問は古く、すでにgit filter-branch
非推奨になっていて危険な可能性があることは既に述べられています。しかし、その一方で、変換後の検証が容易な個人用リポジトリで他の人を助けるかもしれません。ですから、警告してください!また、非推奨ではなく同じことを行う、安全に使用できる他のツールがあるかどうかをお知らせください。
以下のgitバージョン2.26.2を使用してLinuxで両方の手順を実現した方法を説明します。古いバージョンはある程度機能するかもしれませんが、テストする必要があります。
簡単にするために、元のリポジトリにmaster
ブランチとorigin
リモートしかない場合に限定しrepo-old
ます。またtemp_
、プロセスで削除される接頭辞付きの一時的なgitタグに依存していることにも注意してください。したがって、同じような名前のタグがすでにある場合は、以下のプレフィックスを調整することをお勧めします。そして最後に、私はこれを広範囲にテストしていないので、レシピが失敗するコーナーケースがあるかもしれないことに注意してください。続行する前にすべてをバックアップしてください!
次のbashスニペットを1つの大きなスクリプトに連結して、リポジトリと同じフォルダーで実行する必要があります repo-org
ます。すべてを直接コピーしてコマンドウィンドウに貼り付けることはお勧めしません(私はこれを正常にテストしましたが)。
0.準備
変数
# Root directory where repo-org lives
# and a temporary location for git filter-branch
root="$PWD"
temp='/dev/shm/tmp'
# The old repository and the subdirectory we'd like to extract
repo_old="$root/repo-old"
repo_old_directory='sub'
# The new submodule repository, its url
# and a hash map folder which will be populated
# and later used in the filter script below
repo_sub="$root/repo-sub"
repo_sub_url='https://github.com/somewhere/repo-sub.git'
repo_sub_hashmap="$root/repo-sub.map"
# The new modified repository, its url
# and a filter script which is created as heredoc below
repo_new="$root/repo-new"
repo_new_url='https://github.com/somewhere/repo-new.git'
repo_new_filter="$root/repo-new.sh"
フィルタースクリプト
# The index filter script which converts our subdirectory into a submodule
cat << EOF > "$repo_new_filter"
#!/bin/bash
# Submodule hash map function
sub ()
{
local old_commit=\$(git rev-list -1 \$1 -- '$repo_old_directory')
if [ ! -z "\$old_commit" ]
then
echo \$(cat "$repo_sub_hashmap/\$old_commit")
fi
}
# Submodule config
SUB_COMMIT=\$(sub \$GIT_COMMIT)
SUB_DIR='$repo_old_directory'
SUB_URL='$repo_sub_url'
# Submodule replacement
if [ ! -z "\$SUB_COMMIT" ]
then
touch '.gitmodules'
git config --file='.gitmodules' "submodule.\$SUB_DIR.path" "\$SUB_DIR"
git config --file='.gitmodules' "submodule.\$SUB_DIR.url" "\$SUB_URL"
git config --file='.gitmodules' "submodule.\$SUB_DIR.branch" 'master'
git add '.gitmodules'
git rm --cached -qrf "\$SUB_DIR"
git update-index --add --cacheinfo 160000 \$SUB_COMMIT "\$SUB_DIR"
fi
EOF
chmod +x "$repo_new_filter"
1.サブディレクトリの抽出
cd "$root"
# Create a new clone for our new submodule repo
git clone "$repo_old" "$repo_sub"
# Enter the new submodule repo
cd "$repo_sub"
# Remove the old origin remote
git remote remove origin
# Loop over all commits and create temporary tags
for commit in $(git rev-list --all)
do
git tag "temp_$commit" $commit
done
# Extract the subdirectory and slice commits
mkdir -p "$temp"
git filter-branch --subdirectory-filter "$repo_old_directory" \
--tag-name-filter 'cat' \
--prune-empty --force -d "$temp" -- --all
# Populate hash map folder from our previously created tag names
mkdir -p "$repo_sub_hashmap"
for tag in $(git tag | grep "^temp_")
do
old_commit=${tag#'temp_'}
sub_commit=$(git rev-list -1 $tag)
echo $sub_commit > "$repo_sub_hashmap/$old_commit"
done
git tag | grep "^temp_" | xargs -d '\n' git tag -d 2>&1 > /dev/null
# Add the new url for this repository (and e.g. push)
git remote add origin "$repo_sub_url"
# git push -u origin master
2.サブディレクトリの置き換え
cd "$root"
# Create a clone for our modified repo
git clone "$repo_old" "$repo_new"
# Enter the new modified repo
cd "$repo_new"
# Remove the old origin remote
git remote remove origin
# Replace the subdirectory and map all sliced submodule commits using
# the filter script from above
mkdir -p "$temp"
git filter-branch --index-filter "$repo_new_filter" \
--tag-name-filter 'cat' --force -d "$temp" -- --all
# Add the new url for this repository (and e.g. push)
git remote add origin "$repo_new_url"
# git push -u origin master
# Cleanup (commented for safety reasons)
# rm -rf "$repo_sub_hashmap"
# rm -f "$repo_new_filter"
備考:新しく作成したリポジトリrepo-new
がハングしている場合は、git submodule update --init
代わりにリポジトリを再帰的に1回再クローンしてみてください。
cd "$root"
# Clone the new modified repo recursively
git clone --recursive "$repo_new" "$repo_new-tmp"
# Now use the newly cloned one
mv "$repo_new" "$repo_new-bak"
mv "$repo_new-tmp" "$repo_new"
# Cleanup (commented for safety reasons)
# rm -rf "$repo_new-bak"