मैं आपकी समस्या के लिए एक और समाधान ( git-submodules का विकल्प ) सुझा सकता हूं - gil (git लिंक) टूल
यह जटिल गिट रिपोजिटरी निर्भरता का वर्णन और प्रबंधन करने की अनुमति देता है।
इसके अलावा यह git पुनरावर्ती सबमॉडुल्स निर्भरता समस्या का समाधान प्रदान करता है ।
विचार करें कि आपके पास निम्नलिखित परियोजना निर्भरताएँ हैं:
नमूना गिट रिपॉजिटरी निर्भरता ग्राफ
फिर आप .gitlinks
रिपॉजिटरी रिलेशन विवरण के साथ फाइल को परिभाषित कर सकते हैं :
# Projects
CppBenchmark CppBenchmark https://github.com/chronoxor/CppBenchmark.git master
CppCommon CppCommon https://github.com/chronoxor/CppCommon.git master
CppLogging CppLogging https://github.com/chronoxor/CppLogging.git master
# Modules
Catch2 modules/Catch2 https://github.com/catchorg/Catch2.git master
cpp-optparse modules/cpp-optparse https://github.com/weisslj/cpp-optparse.git master
fmt modules/fmt https://github.com/fmtlib/fmt.git master
HdrHistogram modules/HdrHistogram https://github.com/HdrHistogram/HdrHistogram_c.git master
zlib modules/zlib https://github.com/madler/zlib.git master
# Scripts
build scripts/build https://github.com/chronoxor/CppBuildScripts.git master
cmake scripts/cmake https://github.com/chronoxor/CppCMakeScripts.git master
प्रत्येक लाइन निम्नलिखित प्रारूप में गिट लिंक का वर्णन करती है:
- भंडार का अनोखा नाम
- रिपॉजिटरी का सापेक्ष पथ (.gitlinks फ़ाइल के पथ से शुरू)
- Git रिपॉजिटरी जो git क्लोन कमांड रिपोजिटरी ब्रांच में चेकआउट करने के लिए इस्तेमाल की जाएगी
- # के साथ शुरू की गई खाली लाइन या लाइन को पार्स नहीं किया जाता है (टिप्पणी के रूप में माना जाता है)।
अंत में आपको अपना रूट सैंपल रिपॉजिटरी अपडेट करना होगा:
# Clone and link all git links dependencies from .gitlinks file
gil clone
gil link
# The same result with a single command
gil update
परिणामस्वरूप आप सभी आवश्यक परियोजनाओं का क्लोन बना लेंगे और उन्हें एक दूसरे से उचित तरीके से जोड़ लेंगे।
यदि आप बच्चे से जुड़े भंडार में सभी परिवर्तनों के साथ कुछ भंडार में सभी परिवर्तन करना चाहते हैं, तो आप इसे एक ही आदेश के साथ कर सकते हैं:
gil commit -a -m "Some big update"
पुश, पुश कमांड एक समान तरीके से काम करता है:
gil pull
gil push
गिल (गिट लिंक) उपकरण निम्नलिखित आदेशों का समर्थन करता है:
usage: gil command arguments
Supported commands:
help - show this help
context - command will show the current git link context of the current directory
clone - clone all repositories that are missed in the current context
link - link all repositories that are missed in the current context
update - clone and link in a single operation
pull - pull all repositories in the current directory
push - push all repositories in the current directory
commit - commit all repositories in the current directory
गिट पुनरावर्ती सबमोडुल्स निर्भरता समस्या के बारे में अधिक ।