Articles → GIT → How to check the commit logs in git
How to check the commit logs in git
Commit logs
Click to Enlarge
Get the list of top 10 logs
git log --pretty=oneline | tail -n 10
Get the list of logs in reverse order
git log --pretty=oneline --reverse
Get the list of files committed
Click to Enlarge