what is it?

options for local or global git repositories

recipes

log with color

to set globally. adds new git commands git lg git lg1 git lg2

~/.gitconfig
[alias]
  lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(auto)%d%C(reset)' --all
  lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%as%C(reset) %C(bold green)(%ar)%C(reset)%C(auto)%d%C(reset)%C(dim white) - %an%C(reset)%n''%C(bold white)%s%C(reset)%n'
  lg = lg1