मेरे पास एक काम करने वाला पेड़ है जिसमें 3 कमिट हैं:
➜ ~ मायप्रोजेक्ट गिट: (मास्टर) git log
commit a99cce8240495de29254b5df8745e41815db5a75
Author: My Name <my@mail.com>
Date: Thu Aug 16 00:59:05 2012 +0200
.gitignore edits
commit 5bccda674c7ca51e849741290530a0d48efd69e8
Author: My Name <my@mail.com>
Date: Mon Aug 13 01:36:39 2012 +0200
Create .gitignore file
commit 6707a66191c84ec6fbf148f8f1c3e8ac83453ae3
Author: My Name <my@mail.com>
Date: Mon Aug 13 01:13:05 2012 +0200
Initial commit (with a misleading message)
अब मैं reword
अपने पहले कमिट (6707a66) के प्रतिबद्ध संदेश की कामना करता हूं
➜ ~ मायप्रोजेक्ट गिट: (मास्टर) git rebase -i 6707
(... प्रवेश कर रहा है)
pick 5bccda6 Create .gitignore file
pick a99cce8 .gitignore edits
# Rebase 6707a66..a99cce8 onto 6707a66
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
# However, if you remove everything, the rebase will be aborted.
#
# Note that empty commits are commented out
इस मामले में, मैं reword
प्रश्न में प्रतिबद्ध संदेश को सही ( git parlance में) करना चाहता हूं :
प्रारंभिक वचन (भ्रामक संदेश के साथ)
… कुछ उपयुक्त के लिए।
हैरानी की बात यह है कि ऊपर दिया गया मेरा प्रयास सफल नहीं हुआ, क्योंकि स्पष्ट रूप से पहले से कोई माता-पिता प्रतिबद्ध नहीं है । (और जब आप rebase
, आपको अपनी इच्छा से पहले अगले सबसे पुराने प्रतिबद्ध का संदर्भ देने की आवश्यकता है reword
, है ना?)
मेरे प्रश्न का सार, इस प्रकार, क्या आप इसे करने के किसी अन्य माध्यम से इसे प्राप्त कर सकते हैं?