संपादित करें:
वैध समाधान के लिए @ सिंबा उत्तर देखें
submodule.<name>.update
वह है जो आप बदलना चाहते हैं, डॉक्स देखें - डिफ़ॉल्टcheckout
submodule.<name>.branch
शाखा को ट्रैक करने के लिए निर्दिष्ट करें - डिफ़ॉल्टmaster
पुराने उत्तर:
व्यक्तिगत रूप से मुझे यहाँ उन उत्तरों से घृणा है जो बाहरी लिंक से प्रत्यक्ष करते हैं जो समय के साथ काम करना बंद कर सकते हैं और मेरे उत्तर की जाँच यहाँ कर सकते हैं (जब तक कि प्रश्न डुप्लिकेट नहीं है) - प्रश्न को निर्देशित करना जो अन्य विषय की पंक्तियों के बीच विषय को कवर करता है, लेकिन कुल मिलाकर बराबर है: "मैं हूँ जवाब नहीं दे रहा है, प्रलेखन पढ़ें। "
तो वापस सवाल पर: ऐसा क्यों होता है?
आपके द्वारा वर्णित स्थिति
सर्वर से परिवर्तन खींचने के बाद, कई बार मेरा सबमॉड्यूल हेड मास्टर ब्रांच से अलग हो जाता है।
यह एक सामान्य मामला है जब कोई अक्सर सबमॉड्यूल्स का उपयोग नहीं करता है या बस सबमॉड्यूल्स के साथ शुरू हुआ है । मुझे विश्वास है कि मैं बताते हुए सही हूं, कि हम सभी किसी न किसी बिंदु पर हैं, जहां हमारे सबमॉडल के सिर खराब हो जाते हैं।
- कारण: आपका सबमॉडल सही शाखा (डिफ़ॉल्ट मास्टर) पर नज़र नहीं रख रहा है।
समाधान: सुनिश्चित करें कि आपका सबमॉडल सही शाखा पर नज़र रख रहा है
$ cd <submodule-path>
# if the master branch already exists locally:
# (From git docs - branch)
# -u <upstream>
# --set-upstream-to=<upstream>
# Set up <branchname>'s tracking information so <upstream>
# is considered <branchname>'s upstream branch.
# If no <branchname> is specified, then it defaults to the current branch.
$ git branch -u <origin>/<branch> <branch>
# else:
$ git checkout -b <branch> --track <origin>/<branch>
- कारण: आपका माता-पिता रेपो सबमॉडल्स शाखा को ट्रैक करने के लिए कॉन्फ़िगर नहीं किया गया है।
समाधान: अपने सबमॉड्यूल को निम्नलिखित दो कमांड्स के साथ नए सबमॉड्यूल जोड़कर अपनी दूरस्थ शाखा को ट्रैक करें।
- पहले आप अपने रिमोट को ट्रैक करने के लिए गिट बताएं
<branch>
।
- आप चेकआउट के बजाय रीबेस या मर्ज करने के लिए गिट को बताते हैं
- आप अपने रिमोट से अपने सबमॉड्यूल को अपडेट करने के लिए गिट बताएं।
$ git submodule add -b <branch> <repository> [<submodule-path>]
$ git config -f .gitmodules submodule.<submodule-path>.update rebase
$ git submodule update --remote
- यदि आपने अपने मौजूदा सबमॉड्यूल को इस तरह नहीं जोड़ा है तो आप इसे आसानी से ठीक कर सकते हैं:
- सबसे पहले आप यह सुनिश्चित करना चाहते हैं कि आपके सबमॉड्यूल में शाखा की जाँच है जिसे आप ट्रैक करना चाहते हैं।
$ cd <submodule-path>
$ git checkout <branch>
$ cd <parent-repo-path>
# <submodule-path> is here path releative to parent repo root
# without starting path separator
$ git config -f .gitmodules submodule.<submodule-path>.branch <branch>
$ git config -f .gitmodules submodule.<submodule-path>.update <rebase|merge>
सामान्य मामलों में, आप पहले से ही अब तक अपने विस्तृत हेड को ठीक कर चुके हैं क्योंकि यह ऊपर दिए गए कॉन्फ़िगरेशन मुद्दों में से एक से संबंधित था।
तय किए गए HEAD को ठीक कर रहा है .update = checkout
$ cd <submodule-path> # and make modification to your submodule
$ git add .
$ git commit -m"Your modification" # Let's say you forgot to push it to remote.
$ cd <parent-repo-path>
$ git status # you will get
Your branch is up-to-date with '<origin>/<branch>'.
Changes not staged for commit:
modified: path/to/submodule (new commits)
# As normally you would commit new commit hash to your parent repo
$ git add -A
$ git commit -m"Updated submodule"
$ git push <origin> <branch>.
$ git status
Your branch is up-to-date with '<origin>/<branch>'.
nothing to commit, working directory clean
# If you now update your submodule
$ git submodule update --remote
Submodule path 'path/to/submodule': checked out 'commit-hash'
$ git status # will show again that (submodule has new commits)
$ cd <submodule-path>
$ git status
HEAD detached at <hash>
# as you see you are DETACHED and you are lucky if you found out now
# since at this point you just asked git to update your submodule
# from remote master which is 1 commit behind your local branch
# since you did not push you submodule chage commit to remote.
# Here you can fix it simply by. (in submodules path)
$ git checkout <branch>
$ git push <origin>/<branch>
# which will fix the states for both submodule and parent since
# you told already parent repo which is the submodules commit hash
# to track so you don't see it anymore as untracked.
लेकिन अगर आप स्थानीय रूप से सबमॉड्यूल के लिए पहले से ही कुछ बदलाव करने में कामयाब रहे और कमिट किया, तो इन्हें रिमोट पर धकेल दिया, जब आपने 'git चेकआउट' निष्पादित किया, तो Git आपको सूचित करता है:
$ git checkout <branch>
Warning: you are leaving 1 commit behind, not connected to any of your branches:
If you want to keep it by creating a new branch, this may be a good time to do so with:
एक अस्थायी शाखा बनाने के लिए अनुशंसित विकल्प अच्छा हो सकता है, और फिर आप इन शाखाओं आदि को मर्ज कर सकते हैं, हालांकि मैं व्यक्तिगत रूप से सिर्फ git cherry-pick <hash>
इस मामले में उपयोग करूंगा ।
$ git cherry-pick <hash> # hash which git showed you related to DETACHED HEAD
# if you get 'error: could not apply...' run mergetool and fix conflicts
$ git mergetool
$ git status # since your modifications are staged just remove untracked junk files
$ rm -rf <untracked junk file(s)>
$ git commit # without arguments
# which should open for you commit message from DETACHED HEAD
# just save it or modify the message.
$ git push <origin> <branch>
$ cd <parent-repo-path>
$ git add -A # or just the unstaged submodule
$ git commit -m"Updated <submodule>"
$ git push <origin> <branch>
हालाँकि कुछ और मामले हैं जो आप अपने सबमॉडल्स को डीटेल्ड हैड स्टेट में प्राप्त कर सकते हैं, मुझे उम्मीद है कि अब आप समझ गए होंगे कि अपने विशेष केस को कैसे डीबग करें।