Logo

Finding the git Log

To simply view the repository log in a simple form, run the command

git log

There are many different ways to view a log

To view commits from a specific person

git log --author=name

To see a compressed log where each commit is one line

git log --pretty=oneline

To see an ASCII art tree of all branches

git log --graph --oneline --decorate --all

To see what files have changed

git log --name-status