gitconfig 452 B

123456789101112131415161718
  1. # This is Git's per-user configuration file.
  2. [user]
  3. # Please adapt and uncomment the following lines:
  4. # name = Kevin Heinicke
  5. # email = kheinicke@kheinick-mbp2.dyndns.cern.ch
  6. [user]
  7. email = kevin@kehei.de
  8. name = Kevin Heinicke
  9. [core]
  10. excludesfile = /Users/kheinicke/.gitignore_global
  11. [diff]
  12. tool = opendiff
  13. [difftool]
  14. prompt = false
  15. [difftool "opendiff"]
  16. cmd = opendiff \"$LOCAL\" \"$REMOTE\" -merge \"$MERGED\" | cat
  17. [merge]
  18. tool = opendiff