मुझे भी दिलचस्पी है। मैं जवाब नहीं जानता, लेकिन ...
एक जटिल प्रणाली जो काम करती है वह हमेशा एक सरल प्रणाली से विकसित होती है जो काम करती है
मुझे लगता है कि जीआईटी का विलय अत्यधिक परिष्कृत है और इसे समझना बहुत मुश्किल होगा - लेकिन इसके संपर्क का एक तरीका इसके अग्रदूतों से है, और अपनी चिंता के दिल पर ध्यान केंद्रित करना है। अर्थात्, दो फाइलें दी गई हैं, जिनके पास एक सामान्य पूर्वज नहीं है, git मर्ज कैसे कार्य करता है कि उन्हें कैसे मर्ज किया जाए, और कहां विरोध हैं?
आइए कुछ अग्रदूतों को खोजने का प्रयास करें। से git help merge-file
:
git merge-file is designed to be a minimal clone of RCS merge; that is,
it implements all of RCS merge's functionality which is needed by
git(1).
विकिपीडिया से: http://en.wikipedia.org/wiki/Git_%28software%29 -> http://en.wikipedia.org/wiki/Three-way_merge#Tree-way_merge - http: //en.wikipedia .org / wiki / Diff3 -> http://www.cis.upenn.edu/~bcpierce/papers/diff3-short.pdf
वह आखिरी कड़ी diff3
एल्गोरिदम के बारे में विस्तार से वर्णन करते हुए एक कागज का एक पीडीएफ है। यहाँ एक google pdf-दर्शकों का संस्करण है । यह केवल 12 पेज लंबा है, और एल्गोरिथ्म केवल कुछ पृष्ठों का है - लेकिन एक पूर्ण-गणितीय उपचार। यह थोड़ा औपचारिक लग सकता है, लेकिन अगर आप गिट के मर्ज को समझना चाहते हैं, तो आपको पहले सरल संस्करण को समझना होगा। मैंने अभी तक जाँच नहीं की है, लेकिन जैसे नाम के साथ diff3
, आपको संभवतः अंतर समझने की भी आवश्यकता होगी (जो सबसे लंबे समय तक सामान्य एल्गोरिथ्म का उपयोग करता है )। हालाँकि, वहाँ एक और अधिक सहज ज्ञान युक्त स्पष्टीकरण हो सकता है diff3
, अगर आपके पास एक Google है ...
अब, मैंने सिर्फ एक प्रयोग किया diff3
और तुलना की git merge-file
। वे एक ही तीन इनपुट फ़ाइलें ले version1 oldversion version2 और मार्क संघर्ष रास्ता एक ही है, साथ <<<<<<< version1
, =======
, >>>>>>> version2
( diff3
भी ||||||| oldversion
), उनकी साझी विरासत को दर्शाता है।
मैं के लिए एक खाली फ़ाइल का उपयोग किया oldversion , और के लिए लगभग समान फ़ाइलों version1 और version2 सिर्फ एक अतिरिक्त लाइन के साथ करने के लिए जोड़ा version2 ।
परिणाम: git merge-file
संघर्ष के रूप में एकल परिवर्तित रेखा की पहचान की; लेकिन diff3
पूरे दो फाइलों को एक संघर्ष के रूप में माना जाता है। इस प्रकार, diff3 जितना परिष्कृत है, git का मर्ज और भी अधिक परिष्कृत है, यहां तक कि इस सरलतम मामलों के लिए भी।
यहां वास्तविक परिणाम हैं (मैंने पाठ के लिए @ टालबर्ग के उत्तर का उपयोग किया है)। आवश्यक विकल्पों पर ध्यान दें (संबंधित मानपत्र देखें)।
$ git merge-file -p fun1.txt fun0.txt fun2.txt
You might be best off looking for a description of a 3-way merge algorithm. A
high-level description would go something like this:
Find a suitable merge base B - a version of the file that is an ancestor of
both of the new versions (X and Y), and usually the most recent such base
(although there are cases where it will have to go back further, which is one
of the features of gits default recursive merge) Perform diffs of X with B and
Y with B. Walk through the change blocks identified in the two diffs. If both
sides introduce the same change in the same spot, accept either one; if one
introduces a change and the other leaves that region alone, introduce the
change in the final; if both introduce changes in a spot, but they don't match,
mark a conflict to be resolved manually.
<<<<<<< fun1.txt
=======
THIS IS A BIT DIFFERENT
>>>>>>> fun2.txt
The full algorithm deals with this in a lot more detail, and even has some
documentation (/usr/share/doc/git-doc/technical/trivial-merge.txt for one,
along with the git help XXX pages, where XXX is one of merge-base, merge-file,
merge, merge-one-file and possibly a few others). If that's not deep enough,
there's always source code...
$ diff3 -m fun1.txt fun0.txt fun2.txt
<<<<<<< fun1.txt
You might be best off looking for a description of a 3-way merge algorithm. A
high-level description would go something like this:
Find a suitable merge base B - a version of the file that is an ancestor of
both of the new versions (X and Y), and usually the most recent such base
(although there are cases where it will have to go back further, which is one
of the features of gits default recursive merge) Perform diffs of X with B and
Y with B. Walk through the change blocks identified in the two diffs. If both
sides introduce the same change in the same spot, accept either one; if one
introduces a change and the other leaves that region alone, introduce the
change in the final; if both introduce changes in a spot, but they don't match,
mark a conflict to be resolved manually.
The full algorithm deals with this in a lot more detail, and even has some
documentation (/usr/share/doc/git-doc/technical/trivial-merge.txt for one,
along with the git help XXX pages, where XXX is one of merge-base, merge-file,
merge, merge-one-file and possibly a few others). If that's not deep enough,
there's always source code...
||||||| fun0.txt
=======
You might be best off looking for a description of a 3-way merge algorithm. A
high-level description would go something like this:
Find a suitable merge base B - a version of the file that is an ancestor of
both of the new versions (X and Y), and usually the most recent such base
(although there are cases where it will have to go back further, which is one
of the features of gits default recursive merge) Perform diffs of X with B and
Y with B. Walk through the change blocks identified in the two diffs. If both
sides introduce the same change in the same spot, accept either one; if one
introduces a change and the other leaves that region alone, introduce the
change in the final; if both introduce changes in a spot, but they don't match,
mark a conflict to be resolved manually.
THIS IS A BIT DIFFERENT
The full algorithm deals with this in a lot more detail, and even has some
documentation (/usr/share/doc/git-doc/technical/trivial-merge.txt for one,
along with the git help XXX pages, where XXX is one of merge-base, merge-file,
merge, merge-one-file and possibly a few others). If that's not deep enough,
there's always source code...
>>>>>>> fun2.txt
यदि आप वास्तव में इस में रुचि रखते हैं, तो यह एक खरगोश छेद का एक सा है। मेरे लिए, यह नियमित अभिव्यक्तियों के रूप में उतना ही गहरा लगता है, सबसे लंबे समय तक अंतर के सामान्य एल्गोरिथ्म, संदर्भ मुक्त व्याकरण, या संबंधपरक बीजगणित। यदि आप इसकी तह तक जाना चाहते हैं, तो मुझे लगता है कि आप कर सकते हैं, लेकिन यह कुछ निर्धारित अध्ययन करेगा।