Update Git aliases

This commit is contained in:
Scott Wallace 2018-12-13 16:43:14 +00:00
parent 16d501bbcc
commit 9f5e2575ae

View file

@ -13,19 +13,21 @@
autocrlf = input
excludesfile = ~/.gitignore_global
pager = less -SRFX
sshCommand = ssh -q
[alias]
lg1 = log --graph --abbrev-commit --decorate --date=relative --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)'
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)'
lg = !"git lg1"
lgd = log -p --decorate
history = log --pretty=oneline --abbrev-commit --all --graph --decorate
tidy = remote prune origin
tidy = !git remote prune origin && git fetch -p && git branch -vv | awk '/: gone]/ {print $1}' | xargs git branch -D
update = !git pull && git tidy
st = status
ci = commit
co = checkout
cp = cherry-pick --ff
br = branch
up = !git update
ref = for-each-ref --format='%(committerdate) %09 %(authorname) %09 %(refname)' --sort=committerdate
rl = reflog --date=iso
tags = tag --sort=taggerdate