commit a67edfaa870430ae58dd6d6e8cea68f0c9a08c0a [we've got the commit ID, this is the identifier, each commit has a unique ID]
Author: Naveen [Author of the commit, this is fetched out from the congfig under the .git folder]
Date: Mon Dec 14 13:44:18 2015 +0530 [Date when the commit was made]
my initial commit message we put while commit, commit messages must be very descriptive, so that other team member must know what changes you have made
Some usefull options we can use with commit log
naveen@naveen:/var/www/html/RND/symfony_sites/symfony_todoapp$ git help log
This will display all the availbale option we can use with git log
Limit the number of commit
git log -n
for example
git log -n 1
this will only show one commit
commit a67edfaa870430ae58dd6d6e8cea68f0c9a08c0a
Author: Naveen
Date: Mon Dec 14 13:44:18 2015 +0530
my initial commit
0 Comment(s)