गिट शाखा मर्ज
शाखाओं को मिलाएं
हमारे पास इमरजेंसी फिक्स तैयार है, और इसलिए आइए मास्टर और इमरजेंसी-फिक्स शाखाओं को मर्ज करें।
सबसे पहले, हमें मास्टर शाखा में बदलने की जरूरत है:
उदाहरण
git checkout master
Switched to branch 'master'
अब हम वर्तमान शाखा (मास्टर) को इमरजेंसी-फिक्स के साथ मर्ज करते हैं:
उदाहरण
git merge emergency-fix
Updating 09f4acd..dfa79db
Fast-forward
index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
चूंकि आपातकालीन-फिक्स शाखा सीधे मास्टर से आई थी, और जब हम काम कर रहे थे तब मास्टर में कोई अन्य परिवर्तन नहीं किया गया था, गिट इसे मास्टर की निरंतरता के रूप में देखता है। तो यह "फास्ट-फॉरवर्ड" कर सकता है, बस मास्टर और आपातकालीन दोनों को एक ही प्रतिबद्धता पर इंगित करता है।
चूंकि मास्टर और इमरजेंसी-फिक्स अनिवार्य रूप से अब समान हैं, इसलिए हम इमरजेंसी-फिक्स को हटा सकते हैं, क्योंकि अब इसकी आवश्यकता नहीं है:
उदाहरण
git branch -d emergency-fix
Deleted branch emergency-fix (was dfa79db).
मर्ज संघर्ष
अब हम hello-world-images पर जा सकते हैं और काम करना जारी रख सकते हैं। एक और छवि फ़ाइल जोड़ें (img_hello_git.jpg) और index.html बदलें, इसलिए यह इसे दिखाता है:
उदाहरण
git checkout hello-world-images
Switched to branch 'hello-world-images'
उदाहरण
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
<link rel="stylesheet" href="bluestyle.css">
</head>
<body>
<h1>Hello world!</h1>
<div><img src="img_hello_world.jpg" alt="Hello World
from Space" style="width:100%;max-width:960px"></div>
<p>This is the first
file in my new Git Repo.</p>
<p>A new line in our file!</p>
<div><img
src="img_hello_git.jpg" alt="Hello Git"
style="width:100%;max-width:640px"></div>
</body>
</html>
अब, हम यहां अपना काम पूरा कर चुके हैं और इस शाखा के लिए मंच और प्रतिबद्धता कर सकते हैं:
उदाहरण
git add --all
git commit -m "added new image"
[hello-world-images 1f1584e] added new image
2 files changed, 1 insertion(+)
create mode 100644 img_hello_git.jpg
हम देखते हैं कि दोनों शाखाओं में index.html बदल दिया गया है। अब हम हैलो-वर्ल्ड-इमेज को मास्टर में मर्ज करने के लिए तैयार हैं। लेकिन हमने हाल ही में मास्टर में जो बदलाव किए हैं उनका क्या होगा?
उदाहरण
git checkout master
git merge hello-world-images
Auto-merging index.html
CONFLICT (content): Merge conflict in index.html
Automatic merge failed; fix conflicts and then commit the result.
मर्ज विफल हुआ, क्योंकि index.html के संस्करणों के बीच विरोध है। आइए स्थिति की जांच करें:
उदाहरण
git status
On branch master
You have unmerged paths.
(fix conflicts and run "git commit")
(use "git merge --abort" to abort the merge)
Changes to be committed:
new file: img_hello_git.jpg
new file: img_hello_world.jpg
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: index.html
यह पुष्टि करता है कि index.html में कोई विरोध है, लेकिन छवि फ़ाइलें तैयार हैं और प्रतिबद्ध होने के लिए चरणबद्ध हैं।
इसलिए हमें उस संघर्ष को ठीक करने की जरूरत है। हमारे संपादक में फ़ाइल खोलें:
उदाहरण
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
<link
rel="stylesheet" href="bluestyle.css">
</head>
<body>
<h1>Hello
world!</h1>
<div><img src="img_hello_world.jpg" alt="Hello World from
Space" style="width:100%;max-width:960px"></div>
<p>This is the first file
in my new Git Repo.</p>
<<<<<<< HEAD
<p>This line is here to show how
merging works.</p>
=======
<p>A new line in our file!</p>
<div><img
src="img_hello_git.jpg" alt="Hello Git"
style="width:100%;max-width:640px"></div>
>>>>>>> hello-world-images
</body>
</html>
हम संस्करणों के बीच अंतर देख सकते हैं और इसे संपादित कर सकते हैं जैसे हम चाहते हैं:
उदाहरण
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
<link
rel="stylesheet" href="bluestyle.css">
</head>
<body>
<h1>Hello
world!</h1>
<div><img src="img_hello_world.jpg" alt="Hello World from
Space" style="width:100%;max-width:960px"></div>
<p>This is the first file
in my new Git Repo.</p>
<p>This line is here to show how
merging works.</p>
<div><img
src="img_hello_git.jpg" alt="Hello Git"
style="width:100%;max-width:640px"></div>
</body>
</html>
अब हम index.html को मंचित कर सकते हैं और स्थिति की जांच कर सकते हैं:
उदाहरण
git add index.html
git status
On branch master
All conflicts fixed but you are still merging.
(use "git commit" to conclude merge)
Changes to be committed:
new file: img_hello_git.jpg
new file: img_hello_world.jpg
modified: index.html
संघर्ष को ठीक कर दिया गया है, और हम मर्ज को समाप्त करने के लिए प्रतिबद्ध का उपयोग कर सकते हैं:
उदाहरण
git commit -m "merged with hello-world-images after fixing conflicts"
[master e0b6038] merged with hello-world-images after fixing conflicts
और हैलो-वर्ल्ड-इमेज ब्रांच को डिलीट करें:
उदाहरण
git branch -d hello-world-images
Deleted branch hello-world-images (was 1f1584e).
अब आपको बेहतर समझ है कि शाखाएं और विलय कैसे काम करते हैं। रिमोट रिपोजिटरी के साथ काम करना शुरू करने का समय!