gitconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. [user]
  2. name = Fabian Peter Hammerle
  3. email = fabian@hammerle.me
  4. signingkey = 8D2902FE7DF47DDEDA2802F9456B9A0399A5DA2F
  5. [core]
  6. excludesfile = ~/.config/git/gitignore
  7. # hooksPath = ~/.config/git/hooks
  8. [interactive]
  9. singleKey = true
  10. [status]
  11. branch = true
  12. short = true
  13. showUntrackedFiles = normal
  14. [diff]
  15. tool = vimdiff
  16. [diff "hexdump"]
  17. textconv = od -t x1z --
  18. [diff "pgpdump"]
  19. textconv = pgpdump
  20. [filter "lfs"]
  21. clean = git-lfs clean -- %f
  22. smudge = git-lfs smudge -- %f
  23. process = git-lfs filter-process
  24. required = true
  25. [commit]
  26. gpgsign = true
  27. verbose = true
  28. [rebase]
  29. instructionFormat = %G? %s (%an <%ae>, %ai)
  30. autostash = true
  31. [push]
  32. default = simple
  33. [url "git@github.com:"]
  34. pushInsteadOf = https://github.com/
  35. [tag]
  36. forceSignAnnotated = true
  37. [log]
  38. date = iso8601-strict
  39. [gcrypt]
  40. participants = 8D2902FE7DF47DDEDA2802F9456B9A0399A5DA2F
  41. publish-participants = false
  42. [annex]
  43. securehashesonly = true
  44. autocommit = false
  45. synccontent = true
  46. # copy instead of hard-linking when unlocking
  47. thin = false
  48. # assistant: do not auto delete unused files
  49. expireunused = false
  50. # fixes sync of repos inside encfs mounts
  51. ssh-options = -S~/.ssh/%r@%n:%p
  52. [alias]
  53. a = add
  54. c = commit
  55. d = diff
  56. p = push --verbose
  57. s = status
  58. t = for-each-ref --sort taggerdate --format '%(taggerdate:iso) %(objectname) %(tag)' refs/tags
  59. tree = log --graph --format=format:'%C(red)%G?%C(reset) %C(yellow)%h%C(reset)%C(blue)%d%C(reset) %C(dim green)%ar%C(reset) %C(white)%s%C(reset) %C(dim cyan)(%an, %ai)%C(reset)' --all
  60. x = annex