Skip to content

Instantly share code, notes, and snippets.

@ericduran
Last active September 24, 2015 11:37
Show Gist options
  • Save ericduran/742193 to your computer and use it in GitHub Desktop.
Save ericduran/742193 to your computer and use it in GitHub Desktop.
My git config
[user]
name = Eric J. Duran
email = eric.duran7@gmail.com
[color]
ui = true
[alias]
br = branch
ci = commit
co = checkout
df = diff
dc = diff --cached
f = fetch --all
lg = log -p
cl = clean -f -d
r = remote -v
showlast = !git log -1 --format="%h" | git show
st = status
rm-stage = !git ls-files --deleted | xargs git rm
wtf = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
[core]
excludesfile = ~/.gitignore_global
[push]
default = simple
[credential]
helper = osxkeychain
@RobLoach
Copy link

wtf alias++

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment