Skip to content

Instantly share code, notes, and snippets.

@igorski89
Created March 25, 2012 13:48
Show Gist options
  • Save igorski89/2194374 to your computer and use it in GitHub Desktop.
Save igorski89/2194374 to your computer and use it in GitHub Desktop.
.gitconfig
[user]
name = Igor Evsukov
email = igor.evsukov@gmail.com
[alias]
st = status
co = checkout
ci = commit
br = branch
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
wip = "git add -A; git ls-files --deleted -z | xargs -0 git rm; git commit -m \"wip\""
unwip = git log -n 1 | grep -q -c wip && git reset HEAD~1
cs = commit -s
[github]
user = evsukov89
token = cbe6fbd061f8e1d2933bb26a8c6f3442
[core]
excludesfile = /Users/igorevsukov/.gitignore_global
editor = vim
quotepath = false
[color]
ui = true
[difftool]
prompt = false
[difftool "Kaleidoscope"]
cmd = ksdiff-wrapper git \"$LOCAL\" \"$REMOTE\"
[diff]
tool = Kaleidoscope
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
# xcode noise
build/*
*.pbxuser
*.mode1v3
# old school
.svn
# osx noise
.DS_Store
profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment