gitconfig 2.3 KB

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