[core]
  filemode = false
  excludesfile = /Users/sugarskull/.gitignore_global
  pager = less -r
	whitespace = trailing-space,space-before-tab
[color]
  ui = auto
	branch = auto
	diff = true
	interactive = auto
	status = auto

[color "branch"]
  current = yellow reverse
  local = yellow
  remote = green
[color "diff"]
  meta = yellow bold
  frag = magenta bold
  old = red bold
  new = green bold
[color "status"]
  added = yellow
  changed = green
  untracked = cyan
[alias]
  ignore=!([ ! -e .gitignore ] && touch .gitignore) | echo $1 >>.gitignore
  alias = !git config --list | grep 'alias\\.' | sed 's/alias\\.\\([^=]*\\)=\\(.*\\)/\\1\\\t => \\2/'
  prettylog = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold$'
  branchlog = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C($'
  track = "!git branch --set-upstream-to=origin/`git symbolic-ref --short HEAD`"
  last = log -1 HEAD
  l = log --graph --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset'
  lg = !"git lg1"
	co = checkout
	b = branch
	c = commit
	s = status
  d = diff --color-words
  p = pull —rebase
[user]
	name = sugarskull
	email = rodrigo@designcollective.io
[mergetool]
	keepBackup = true
	prompt = false
[difftool]
	prompt = false
[filter "media"]
	clean = git-media-clean %f
	smudge = git-media-smudge %f
[diff]
	renames = copies
	mnemonicprefix = true
[branch]
	autosetupmerge = true
[rerere]
	enabled = true
[merge]
	stat = true