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' |
to use navigate into your git repo and run
# all commits
$ git vlog
# last 6 commits
$ git vlog -n 6
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For consoles with a dark background:
git config alias.vlog 'log --graph --date-order --date=relative --pretty=format:"%C(white)%h: %Cgreen - %an - %Cred %C(cyan)%ar:[B%Creset%n%s%n" --color'