dot_gitconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [user]
  2. email = go.wigust@gmail.com
  3. name = Oleg Pykhalov
  4. [sendemail]
  5. smtpEncryption = tls
  6. smtpServer = smtp.gmail.com
  7. smtpUser = go.wigust@gmail.com
  8. smtpServerPort = 587
  9. assume8bitEncoding = UTF-8
  10. [commit]
  11. gpgsign = true
  12. [user]
  13. signingKey = 167F8EA5001AFA9C
  14. [alias]
  15. branches-by-date = for-each-ref --sort=-committerdate refs/heads
  16. branches-by-date-origin = for-each-ref --sort=-committerdate refs/remotes/origin
  17. contributers = shortlog -sne
  18. ll = log --format='%H %cI %ae %s'
  19. lll = log --format='%ai %H %s'
  20. push-skip-ci = push -o ci.skip
  21. # Credit an author on the latest commit
  22. credit = "!f() { git commit --amend --author \"$1 <$2>\" -C HEAD; }; f"
  23. log-2-weeks = log --format='%ai %H %s' --since="2 weeks ago"
  24. [github]
  25. user = wigust
  26. [gitlab]
  27. user = wigust
  28. [secrets]
  29. providers = /home/oleg/bin/git-pass-secrets
  30. [gitlab "gitlab.intr/api/v4"]
  31. user = pyhalov
  32. [gitlab "gitlab.wugi.info/api/v4"]
  33. user = wigust
  34. [filesystem "Oracle Corporation|1.8.0_222|/dev/sdb2"]
  35. timestampResolution = 8001 microseconds
  36. minRacyThreshold = 0 nanoseconds
  37. [filesystem "Oracle Corporation|1.8.0_242|/dev/sdb2"]
  38. timestampResolution = 1001 microseconds
  39. minRacyThreshold = 4449 microseconds
  40. [filter "lfs"]
  41. clean = git-lfs clean -- %f
  42. smudge = git-lfs smudge -- %f
  43. process = git-lfs filter-process
  44. required = true
  45. [init]
  46. defaultBranch = master