gitconfig 2.6 KB

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