यह पता चला है कि उत्तर बहुत सरल है यदि आप बस दो रिपॉजिटरी को एक साथ गोंद करने की कोशिश कर रहे हैं और ऐसा लग रहा है कि यह एक बाहरी निर्भरता को प्रबंधित करने के बजाय सभी तरह से था। आपको बस अपने पुराने रेपो में रीमोट्स जोड़ने की जरूरत है, उन्हें अपने नए मास्टर में मर्ज करें, फ़ाइलों और फ़ोल्डरों को एक उपनिर्देशिका में ले जाएं, इस कदम को कमिट करें, और सभी अतिरिक्त रिपोज के लिए दोहराएं। सबमॉड्यूल्स, सबट्री मर्ज और फैंसी विद्रोह का उद्देश्य थोड़ी अलग समस्या को हल करना है और जो मैं करने की कोशिश कर रहा था, उसके लिए उपयुक्त नहीं है।
यहां दो रिपॉजिटरी को एक साथ गोंद करने के लिए 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"
स्पष्ट रूप से आप इसके बजाय पुराने_ब को पुराने_ए (जो नया संयुक्त रेपो बन जाता है) को मर्ज कर सकते हैं यदि आप ऐसा करेंगे - तो स्क्रिप्ट को सूट करने के लिए संशोधित करें।
यदि आप इन-प्रोग्रेस फ़ीचर शाखाओं को आगे लाना चाहते हैं, तो इसका उपयोग करें:
# 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 लाइन को सब कुछ सही ढंग से पूरा करने में मदद करता है।
मैंने यहाँ थोड़ा और विस्तृत विवरण लिखा ।