git ll

Log list - Show log list with our preferred options and short information

Git alias:

ll = log \
    --graph \
    --topo-order \
    --decorate \
    --all \
    --boundary \
    --date=short \
    --abbrev-commit \
    --pretty=format:'%Cgreen%ad %Cred%h%Creset -%C(yellow)%d%Creset %s %Cblue[%cn]%Creset %Cblue%G?%Creset'

Example:

git ll
* 2021-01-01 a1b2c3d - Add feature foo [Alice Adams] N
…

Compare

Compare the alias git ll a.k.a. git log-list which is using:

And the alias git lll a.k.a. git log-list-long which is using: