gitconfig 2.8 KB

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