gitconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. [tag]
  34. forceSignAnnotated = true
  35. [log]
  36. date = iso8601-strict
  37. [gcrypt]
  38. participants = 8D2902FE7DF47DDEDA2802F9456B9A0399A5DA2F
  39. publish-participants = false
  40. [annex]
  41. securehashesonly = true
  42. autocommit = false
  43. synccontent = true
  44. # copy instead of hard-linking when unlocking
  45. thin = false
  46. # assistant: do not auto delete unused files
  47. expireunused = false
  48. # fixes sync of repos inside encfs mounts
  49. ssh-options = -S~/.ssh/%r@%n:%p
  50. [alias]
  51. a = add
  52. c = commit
  53. d = diff
  54. p = push --verbose
  55. s = status
  56. t = for-each-ref --sort taggerdate --format '%(taggerdate:iso) %(objectname) %(tag)' refs/tags
  57. 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
  58. x = annex