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.

There's ways to change the message from later commits:

git commit --amend                    # for the most recent commit
git rebase --interactive master~2     # but requires *parent*

How can you change the commit message of the very first commit (which has no parent)?

share|improve this question
See also stackoverflow.com/questions/11987914/… – fork0 Aug 16 '12 at 18:40
In particular: the use of GIT_COMMIT environment variable in the script of git filter-branch --msg-filter – fork0 Aug 16 '12 at 18:41

4 Answers

up vote 77 down vote accepted

Assuming that you have a clean working tree, you can do the following.

# checkout the root commit
git checkout <sha1-of-root>

# amend the commit
git commit --amend

# rebase all the other commits in master onto the amended root
git rebase --onto HEAD HEAD master
share|improve this answer
1  
+1. another git rebase --onto usage! I like it. – VonC Jan 22 '10 at 19:01
+1. It is awesome! – plmday Feb 28 '12 at 13:44
3  
I believe this should be git rebase --onto HEAD <sha1-of-root> master. – Andrew May 9 '12 at 20:58
@Andrew: In this example HEAD is the amended root commit. – Charles Bailey May 9 '12 at 21:07
3  
Yes, make sure it's git rebase --onto HEAD <sha1-of-root> master, where <sha1-of-root> is the same used in git checkout <sha1-of-root>. Otherwise, you'll have 2 first commit's. – Andy Jun 18 '12 at 19:01
show 2 more comments

This might help. http://serverfault.com/questions/12918/how-do-i-fix-the-metainformation-on-the-first-commit-in-git

share|improve this answer
A link is not considered a full answer. Can you summarize the information there? – Kazark Feb 22 at 17:47

As of 1.7.12, you may use

$ git rebase -i --root
share|improve this answer

You could use git filter-branch:

cd test
git init

touch initial
git add -A
git commit -m "Initial commit"

touch a
git add -A
git commit -m "a"

touch b
git add -A
git commit -m "b"

git log

-->
8e6b49e... b
945e92a... a
72fc158... Initial commit

git filter-branch --msg-filter "sed \"s|^Initial commit|New initial commit|g\"" -- --all

git log
-->
c5988ea... b
e0331fd... a
51995f1... New initial 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.