Skip to content

Instantly share code, notes, and snippets.

@naveda89
Forked from endSly/.gitconfig
Last active August 29, 2015 14:11
Show Gist options
  • Save naveda89/aac86aa68268acaff595 to your computer and use it in GitHub Desktop.
Save naveda89/aac86aa68268acaff595 to your computer and use it in GitHub Desktop.
[core]
editor = vim
excludesfile = ~/.gitignore_global
# Treat spaces before tabs and all kinds of trailing whitespace as an error.
# [default] trailing-space: looks for spaces at the end of a line
# [default] space-before-tab: looks for spaces before tabs at the beginning of
# a line
whitespace = space-before-tab,-indent-with-non-tab,trailing-space
# Make `git rebase` safer on OS X
# More info: <http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/>
trustctime = false
[apply]
# Detect whitespace errors when applying a patch
whitespace = fix
[user]
email = alvaro@naveda.me
name = Álvaro Naveda
[alias]
ci = commit -m
cia = commit -a -m
co = checkout
k = !gitk --all
f = fetch --all
komp = !git diff | kompare -
kompc = !git diff --cached | kompare -
st = status
br = branch
pl = pull
p = push
rt = remote
rb = rebase
rbi = rebase -i
ad = add .
undo = reset HEAD^
pk = cherry-pick
last = cat-file commit HEAD
l = 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)' --all
lb = log --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)'
pom = push origin master
phm = push heroku master
plom = pull origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment