Skip to content

Instantly share code, notes, and snippets.

@bbengfort
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbengfort/8797412 to your computer and use it in GitHub Desktop.
Save bbengfort/8797412 to your computer and use it in GitHub Desktop.
My system level git configuration.
[core]
editor = mvim -f
ui = true
excludesfile = /Users/benjamin/.gitignore
[user]
name = Benjamin Bengfort
email = benjamin@bengfort.com
[diff]
external = /Users/benjamin/bin/godiff.sh
[credential]
helper = osxkeychain
.DS_Store
# Python binary and C extensions
*.py[cod]
*.so
# Other ignorables
*.old
*.orig
*.log
*.dat
*.bak
*~
*.swp
*.db
_notes
# Packages
*.egg-info
dist
build
eggs
.installed.cfg
tmp
.idea
#!/bin/sh
/usr/bin/opendiff "$2" "$5" -merge "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment