Skip to content

Instantly share code, notes, and snippets.

@jdunwoody
Created February 27, 2013 00:55
Show Gist options
  • Select an option

  • Save jdunwoody/5043906 to your computer and use it in GitHub Desktop.

Select an option

Save jdunwoody/5043906 to your computer and use it in GitHub Desktop.
gitconfig
[user]
name = James Dunwoody
email = [email protected]
[push]
default = tracking
[core]
editor = mvim
excludesfile = /Users/james/.gitignore_global
[color]
ui = true
[color "branch"]
current = yellow bold
local = green bold
remote = cyan bold
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
whitespace = red reverse
[color "status"]
added = green bold
changed = yellow bold
untracked = red bold
[alias]
st = status
co = checkout
[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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment