git rebase --interactive
संपादित करने के लिए उपयोग करें कि पहले प्रतिबद्ध, चलाएं git reset HEAD~
, और फिर git add -p
कुछ जोड़ने के लिए, फिर एक प्रतिबद्ध करें, फिर कुछ और जोड़ें और एक और प्रतिबद्ध बनाएं, जितनी बार आप चाहें। जब आप काम कर रहे हों, दौड़ें git rebase --continue
, और आपके पास पहले से ही अपने ढेर में विभाजित विभाजन होगा।
महत्वपूर्ण : ध्यान दें कि आप अपने आस-पास खेल सकते हैं और अपने इच्छित सभी बदलाव कर सकते हैं, और पुराने परिवर्तनों को खोने के बारे में चिंता करने की ज़रूरत नहीं है, क्योंकि आप हमेशा git reflog
अपनी परियोजना में उस बिंदु को खोजने के लिए दौड़ सकते हैं जिसमें आपके इच्छित परिवर्तन हैं, (चलो इसे कॉल करें a8c4ab
) , और फिर git reset a8c4ab
।
यह कैसे काम करता है, यह दिखाने के लिए यहां कुछ आदेश दिए गए हैं:
mkdir git-test; cd git-test; git init
अब एक फ़ाइल जोड़ें A
vi A
इस पंक्ति को जोड़ें:
one
git commit -am one
फिर इस लाइन को A में जोड़ें:
two
git commit -am two
फिर इस लाइन को A में जोड़ें:
three
git commit -am three
अब फाइल ए इस तरह दिखती है:
one
two
three
और हमारे git log
निम्नलिखित की तरह दिखता है (ठीक है, मैं उपयोग करता हूंgit log --pretty=oneline --pretty="%h %cn %cr ---- %s"
bfb8e46 Rose Perrone 4 seconds ago ---- three
2b613bc Rose Perrone 14 seconds ago ---- two
9aac58f Rose Perrone 24 seconds ago ---- one
चलो का कहना है, हम दूसरे के लिए प्रतिबद्ध विभाजित करना चाहते हैं two
।
git rebase --interactive HEAD~2
यह एक संदेश लाता है जो इस तरह दिखता है:
pick 2b613bc two
pick bfb8e46 three
उस कमिट को संपादित pick
करने के लिए पहले बदलें e
।
git reset HEAD~
git diff
हमें पता चलता है कि हमने केवल दूसरी प्रतिबद्धताओं के लिए की गई प्रतिबद्धताओं को अनसुना कर दिया है:
diff --git a/A b/A
index 5626abf..814f4a4 100644
--- a/A
+++ b/A
@@ -1 +1,2 @@
one
+two
चलिए उस चरण को बदलते हैं, और फ़ाइल में "और एक तीसरा" उस पंक्ति में जोड़ते हैं A
।
git add .
यह आमतौर पर एक इंटरैक्टिव रिबेस के दौरान बिंदु होता है जहां हम दौड़ेंगे git rebase --continue
, क्योंकि हम आमतौर पर पहले के कमिट को संपादित करने के लिए अपने कमिट्स के ढेर में वापस जाना चाहते हैं। लेकिन इस बार, हम एक नई प्रतिबद्धता बनाना चाहते हैं। तो हम चलेंगे git commit -am 'two and a third'
। अब हम फाइल को एडिट करते हैं A
और लाइन को जोड़ते हैं two and two thirds
।
git add .
git commit -am 'two and two thirds'
git rebase --continue
हमारा अपनी प्रतिबद्धता के साथ विरोध है three
, इसलिए हम इसे हल करें:
हम बदल देंगे
one
<<<<<<< HEAD
two and a third
two and two thirds
=======
two
three
>>>>>>> bfb8e46... three
सेवा
one
two and a third
two and two thirds
three
git add .; git rebase --continue
अब हमारा git log -p
ऐसा दिखता है:
commit e59ca35bae8360439823d66d459238779e5b4892
Author: Rose Perrone <roseperrone@fake.com>
Date: Sun Jul 7 13:57:00 2013 -0700
three
diff --git a/A b/A
index 5aef867..dd8fb63 100644
--- a/A
+++ b/A
@@ -1,3 +1,4 @@
one
two and a third
two and two thirds
+three
commit 4a283ba9bf83ef664541b467acdd0bb4d770ab8e
Author: Rose Perrone <roseperrone@fake.com>
Date: Sun Jul 7 14:07:07 2013 -0700
two and two thirds
diff --git a/A b/A
index 575010a..5aef867 100644
--- a/A
+++ b/A
@@ -1,2 +1,3 @@
one
two and a third
+two and two thirds
commit 704d323ca1bc7c45ed8b1714d924adcdc83dfa44
Author: Rose Perrone <roseperrone@fake.com>
Date: Sun Jul 7 14:06:40 2013 -0700
two and a third
diff --git a/A b/A
index 5626abf..575010a 100644
--- a/A
+++ b/A
@@ -1 +1,2 @@
one
+two and a third
commit 9aac58f3893488ec643fecab3c85f5a2f481586f
Author: Rose Perrone <roseperrone@fake.com>
Date: Sun Jul 7 13:56:40 2013 -0700
one
diff --git a/A b/A
new file mode 100644
index 0000000..5626abf
--- /dev/null
+++ b/A
@@ -0,0 +1 @@
+one