gitconfig 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. [init]
  11. defaultBranch = main
  12. [status]
  13. branch = true
  14. short = true
  15. showUntrackedFiles = normal
  16. [grep]
  17. lineNumber = true
  18. [diff]
  19. tool = vimdiff
  20. [diff "db_dump"]
  21. textconv = db_dump
  22. [diff "gpg-verify"]
  23. textconv = gpg --verify --output=- 2>&1 --
  24. [diff "hexdump"]
  25. textconv = od -t x1z --
  26. [diff "pgpdump"]
  27. textconv = pgpdump
  28. [diff "zcat"]
  29. textconv = zcat
  30. [filter "lfs"]
  31. clean = git-lfs clean -- %f
  32. smudge = git-lfs smudge -- %f
  33. process = git-lfs filter-process
  34. required = true
  35. [commit]
  36. gpgsign = true
  37. verbose = true
  38. [rebase]
  39. instructionFormat = %G? %s (%an <%ae>, %ai)
  40. autostash = true
  41. [push]
  42. default = current
  43. [url "git@github.com:"]
  44. pushInsteadOf = https://github.com/
  45. [tag]
  46. forceSignAnnotated = true
  47. [log]
  48. date = iso8601-strict
  49. [gcrypt]
  50. participants = 8D2902FE7DF47DDEDA2802F9456B9A0399A5DA2F
  51. publish-participants = false
  52. [annex]
  53. securehashesonly = true
  54. autocommit = false
  55. synccontent = true
  56. # copy instead of hard-linking when unlocking
  57. thin = false
  58. # assistant: do not auto delete unused files
  59. expireunused = false
  60. # fixes sync of repos inside encfs mounts
  61. ssh-options = -S~/.ssh/%r@%n:%p
  62. [alias]
  63. a = add
  64. c = commit
  65. # git curl-github-api /commits/master/statuses | jq '.[].state'
  66. curl-github-api = "!f() { path="$1"; shift; git github-repo-names | xargs -I{} --verbose curl --header 'Accept: application/vnd.github.v3+json' 'https://api.github.com/repos/{}'\"$path\" "$@"; }; f"
  67. # git curl-github-ref-status dev | jq '{state, statuses, commit_url}'
  68. curl-github-ref-status = "!f() { ref="$1"; shift; git curl-github-api "/commits/$ref/status" "$@"; }; f"
  69. d = diff
  70. f = fetch --prune
  71. github-repo-names = !git github-urls | grep --only-matching --perl-regexp 'github.com/\\K.+(?=\\.git)'
  72. github-urls = !git remote-urls | grep ^https://github.com/
  73. p = push --verbose
  74. remote-urls = !git remote | xargs -L1 git remote get-url
  75. s = status
  76. t = for-each-ref --sort taggerdate --format '%(taggerdate:iso) %(objectname) %(tag)' refs/tags
  77. 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
  78. x = annex