gitconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. [filter "lfs"]
  17. clean = git-lfs clean -- %f
  18. smudge = git-lfs smudge -- %f
  19. process = git-lfs filter-process
  20. required = true
  21. [commit]
  22. gpgsign = true
  23. verbose = true
  24. [rebase]
  25. instructionFormat = %G? %s (%an <%ae>, %ai)
  26. autostash = true
  27. [push]
  28. default = simple
  29. [tag]
  30. forceSignAnnotated = true
  31. [log]
  32. date = iso8601-strict
  33. [gcrypt]
  34. participants = 8D2902FE7DF47DDEDA2802F9456B9A0399A5DA2F
  35. publish-participants = false
  36. [annex]
  37. securehashesonly = true
  38. autocommit = false
  39. synccontent = true
  40. # copy instead of hard-linking when unlocking
  41. thin = false
  42. # assistant: do not auto delete unused files
  43. expireunused = false
  44. # fixes sync of repos inside encfs mounts
  45. ssh-options = -S~/.ssh/%r@%n:%p
  46. [alias]
  47. a = add
  48. c = commit
  49. d = diff
  50. p = push --verbose
  51. s = status
  52. t = for-each-ref --sort taggerdate --format '%(taggerdate:iso) %(objectname) %(tag)' refs/tags
  53. 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
  54. x = annex