config 818 B

1234567891011121314151617181920212223242526272829
  1. [user]
  2. name = Thomas Dy
  3. email = thatsmydoing@gmail.com
  4. [core]
  5. autocrlf = input
  6. [delta]
  7. features = side-by-side line-numbers decorations
  8. whitespace-error-style = 22 reverse
  9. [delta "decorations"]
  10. commit-decoration-style = bold yellow box ul
  11. file-style = bold yellow ul
  12. file-decoration-style = none
  13. [color]
  14. ui = true
  15. [diff]
  16. algorithm = patience
  17. [push]
  18. default = simple
  19. [alias]
  20. root = !pwd
  21. assume = update-index --assume-unchanged
  22. unassume = update-index --no-assume-unchanged
  23. assumed = "!git ls-files -v | grep ^h | cut -c 3-"
  24. lg = "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit"
  25. po = push origin
  26. pof = push origin --force-with-lease
  27. rom = rebase origin/master
  28. riom = rebase -i origin/master
  29. ca = commit --amend