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