From: Tim Chase <git@tim.thechases.com>
To: git@vger.kernel.org
Subject: Splitting a commit with rebase -i and keeping a commit message
Date: Tue, 16 Apr 2013 20:38:25 -0500 [thread overview]
Message-ID: <20130416203825.3701d98b@bigbox.christie.dr> (raw)
I asked this on IRC and played with some of their ideas, but struck
out with anything satisfying. I walked through [1] with the
following setup:
git init foo
cd foo
touch a.txt b.txt
git add a.txt b.txt
git commit -m "Initial checkin"
echo "Modify A" >> a.txt
git commit -am "Modified A"
echo "Modify B" >> b.txt
git commit -am "Modified B"
echo "Modify A2" >> a.txt
echo "Modify B2" >> b.txt
git commit -am "Modified B"
git commit -am "Long-bodied commit comment about b.txt changes"
# whoops, just wanted B
git rebase -i HEAD^^
# change the "Added b.txt..." commit to "edit"
git reset HEAD^ # pull the changes out of the pending commit
git add a.txt
git commit -m "Tweaked a.txt"
git add b.txt
git commit ${MAGIC_HERE}
git rebase --continue
I haven't been able to figure out a good way to keep the "long-bodied
commit comment" for the final commit where the ${MAGIC_HERE} is. Is
there a right/easy way to go about pulling in the commit-message from
the commit the rebase is transplanting?
-tkc
[1]
http://git-scm.com/book/en/Git-Tools-Rewriting-History#Splitting-a-Commit
next reply other threads:[~2013-04-17 2:03 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-17 1:38 Tim Chase [this message]
2013-04-17 2:29 ` Splitting a commit with rebase -i and keeping a commit message David Aguilar
2013-04-17 3:04 ` Tim Chase
2013-04-17 5:55 ` Johannes Sixt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130416203825.3701d98b@bigbox.christie.dr \
--to=git@tim.thechases.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).