1
0

gitconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. [user]
  2. name = raylu
  3. email = raylu@stripe.com
  4. signingkey = B404C651
  5. [color]
  6. ui = true
  7. interactive = true
  8. [color "status"]
  9. added = green bold
  10. changed = red bold
  11. untracked = cyan
  12. [color "diff"]
  13. meta = cyan bold
  14. old = red bold
  15. new = green bold
  16. frag = blue
  17. commit = yellow bold
  18. [color "branch"]
  19. current = green bold
  20. local = bold
  21. remote = red bold
  22. [color "grep"]
  23. match = cyan
  24. [pager]
  25. color = true
  26. [core]
  27. editor = vi
  28. pager = less -FXRS -x4
  29. [merge]
  30. defaultToUpstream = true
  31. [rebase]
  32. autosquash = true
  33. [rerere]
  34. enabled = true
  35. [fetch]
  36. prune = true
  37. [pull]
  38. ff = true
  39. [push]
  40. default = upstream
  41. [diff]
  42. tool = vimdiff
  43. [log]
  44. decorate = true
  45. [alias]
  46. short = log --graph --pretty=format:'%C(yellow)%h%Creset -%C(red)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --patience
  47. ff = merge --ff-only
  48. put = !git-push && git-push --tags
  49. pushf = push --force-with-lease
  50. [protocol "ext"]
  51. allow = always
  52. [url "ext::/home/raymond/stripe/password-vault/bin/git-remote-stripe-ext.rb %S stripe-internal"]
  53. insteadOf = git@github.com:stripe-internal
  54. insteadOf = ssh://git@github.com/stripe-internal
  55. insteadOf = https://github.com/stripe-internal