Skip to content

Instantly share code, notes, and snippets.

@Omerr
Last active March 12, 2025 02:23
Show Gist options
  • Save Omerr/8134a61b56ca82dd90e546e7ef04eb77 to your computer and use it in GitHub Desktop.
Save Omerr/8134a61b56ca82dd90e546e7ef04eb77 to your computer and use it in GitHub Desktop.
git lol - an alias to Git that shows the commit graph in a pretty format

log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit

To configure as an alias git lol:

git config --global alias.lol "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"

@Taras-Ivashchuk
Copy link

Taras-Ivashchuk commented Oct 1, 2024

Tnank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment