gitconfig 3.1 KB

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