DEV Community

Discussion on: Nice looking Git log

Collapse
 
exadra37 profile image
Paulo Renato

Cool tip.

I am on Linux, and I use the OhMyZsh shell that have already pretty print alias for git log, and for example the glg one looks like:

git-log

$ alias | grep glg -
glg='git log --stat'
glgg='git log --graph'
glgga='git log --graph --decorate --all'
glgm='git log --graph --max-count=10'
glgp='git log --stat -p'
Collapse
 
amaltapalov profile image
Amal Tapalov

I don't work on Linux but anyway it always good to know other solutions

Collapse
 
exadra37 profile image
Paulo Renato

The alias I have in Linux should work in Windows to, just give it a try... define them in the same way you have define the one in this article.