Last active
June 21, 2022 20:45
-
-
Save asabaylus/1468122 to your computer and use it in GitHub Desktop.
Git visual log for the console
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Git visual log displays commit tree view with who did what when and in which branch | |
git config --global alias.vlog 'log --graph --date-order --date=relative --pretty=format:"%C(cyan)%h: %Cblue - %an - %Cgreen %C(cyan)%ar:%Creset%n%s%n" --color' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's a typo on the dark background version:
git config alias.vlog 'log --graph --date-order --date=relative --pretty=format:"%C(white)%h: %Cgreen - %an - %Cred %C(cyan)%ar:%Creset%n%s%n" --color'
Thx for this alias