Possible Duplicate:
GIT: How to read last commit comment?
How can I see the comments on the last commitment from the command line
Possible Duplicate:
GIT: How to read last commit comment?
How can I see the comments on the last commitment from the command line
with git log
you should see all old commits with the author, date and comment.
You can use git log
to show a log of past commits. If you only want to see the last commit, you can use git log -1
. The same pattern works for any number of past commits. So, git log -5
will show the past 5 commits.