उदाहरण के लिए, ऐसा करने के कई तरीके हैं:
मामले में आप है नहीं धकेल दिया सार्वजनिक रूप से अभी तक प्रतिबद्ध:
git reset HEAD~1 --soft
यही है, आपके प्रतिबद्ध परिवर्तन आपकी कार्यशील निर्देशिका में होंगे, जबकि LAST प्रतिबद्ध आपकी वर्तमान शाखा से हटा दिया जाएगा। देखिए रीसेट रीसेट मैन
मामले में आप किया था धक्का सार्वजनिक रूप से (एक शाखा 'गुरु' कहा जाता है पर):
git checkout -b MyCommit //save your commit in a separate branch just in case (so you don't have to dig it from reflog in case you screw up :) )
सामान्य रूप से कमिट करें और पुश करें
git checkout master
git revert a8172f36 #hash of the commit you want to destroy
# this introduces a new commit (say, it's hash is 86b48ba) which removes changes, introduced in the commit in question (but those changes are still visible in the history)
git push origin master
अब यदि आप अपनी कार्य प्रति में स्थानीय परिवर्तन के रूप में उन बदलावों को करना चाहते हैं ("ताकि आपकी स्थानीय प्रति उस कमिट में किए गए बदलावों को बनाये रखे") - --no-commit
विकल्प के साथ रिवर्ट कमिट को वापस कर दें :
git revert --no-commit 86b48ba (hash of the revert commit).
मैंने एक छोटा उदाहरण तैयार किया है: https://github.com/Isantipov/git-revert/commits/master