.gitconfig 375 B

1234567891011121314151617181920
  1. [core]
  2. editor = vim
  3. excludesfile = ~/.gitignore
  4. [help]
  5. autocorrect = 1
  6. [color]
  7. ui = true
  8. [push]
  9. default = simple
  10. [pull]
  11. rebase = true
  12. [alias]
  13. a = add
  14. s = status -suall
  15. c = commit
  16. st = stash -u
  17. sa = stash apply
  18. l = !git log --graph --pretty=format:'%C(yellow)%h%Creset -%C(bold red)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'
  19. pp = !git pull && git push