Shows the commit history for the current repository.
git log
Shows the commit's history including all files and their changes.
git log -p
Show some statistics about the changes in each commit, including line(s) changed and file names.
git log --stat
show all commit logs with indication of any paths that moved.
git log --stat -M
Fits each commit on a single line which is useful for an overview of the project history.
git log --graph --oneline --all
Find out the remote repository log commit.
git log origin/main