1
0

gitconfig 832 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. [user]
  2. name = raylu
  3. email = lurayl@gmail.com
  4. signingkey = BA778D8B
  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 = vim
  28. pager = less -FXRS -x4
  29. [merge]
  30. defaultToUpstream = true
  31. [rebase]
  32. autosquash = true
  33. [rerere]
  34. enabled = true
  35. [push]
  36. default = upstream
  37. [diff]
  38. tool = vimdiff
  39. [alias]
  40. 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
  41. ff = merge --ff-only
  42. put = !git-push && git-push --tags