Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When reverting multiple commits using

git revert -n f0000000
git revert -n baaaaaaa

is it possible to ask git to mention in the new commit message all the commits you've reverted, not just one of the commits?

I'm on git version 1.6.3.3, so apologies if it's been fixed in more recent versions.

share|improve this question
@Downvoter: What's wrong with this post? Do you want a question mark at the end of the title? – Andrew Grimm Sep 20 '11 at 2:07
Very good question. +1. Don't know why it was downvoted! – manojlds Sep 20 '11 at 6:08

1 Answer

As far as I know, git creates a new commit message with each revert and hence you will not be able to preserve them all together.

One suggestion is that, if the commits are together, you can squash them first, and then revert, thereby getting all the commit messages.

Edit:

Another alternative, if you can call it that:

git revert -n <sha1>
cp .git/MERGE_MSG .git/MERGE_MSG_1
git revert -n <sha2>
cat .git/MERGE_MSG_1 >> .git/MERGE_MSG
git commit
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.