Skip to content

Instantly share code, notes, and snippets.

View civitz's full-sized avatar

Roberto Piva civitz

View GitHub Profile
log-1.samsungacr.com
log-2.samsungacr.com
notice.samsungcloudsolution.com
noticecdn.samsungcloudsolution.com
noticefile.samsungcloudsolution.com
vdterms.samsungcloudsolution.com
acr0.samsungcloudsolution.com
lcprd1.samsungcloudsolution.net
time.samsungcloudsolution.com
oempprd.samsungcloudsolution.com
@civitz
civitz / gitconfig.sh
Created January 19, 2019 16:51
A better git log - git lg
# from https://stackoverflow.com/questions/1057564/pretty-git-branch-graphs
[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(bold yellow)%d%C(reset)' --all
lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
lg = !"git lg1"