Skip to content
Knowledge Base

Git Log

To show short commit id, date and commit title To view the code changed by commit id To show graph with last 5 lines To show all branchs

Updated 1 min readGit

bash
git log --oneline --decorate=short
bash
git show-ref --tags --heads

To show short commit id, date and commit title

bash
git log --oneline --date=short --pretty=format:"%h %ad %s"

To view the code changed by commit id

bash
git show -p 56d7cfd457

To show graph with last 5 lines

bash
 git log --oneline --graph --decorate -n 5

To show all branchs

bash
git log --oneline --graph --decorate --all -10
git/git-log.md