.gitconfig 497 B

123456789101112131415161718
  1. [user]
  2. name = Thomas Dy
  3. email = thatsmydoing@gmail.com
  4. [core]
  5. excludesfile = ~/.gitignore_global
  6. autocrlf = input
  7. [color]
  8. ui = true
  9. [diff]
  10. algorithm = patience
  11. [push]
  12. default = matching
  13. [alias]
  14. root = !pwd
  15. assume = update-index --assume-unchanged
  16. unassume = update-index --no-assume-unchanged
  17. assumed = "!git ls-files -v | grep ^h | cut -c 3-"
  18. lg = "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit"