.gitconfig 352 B

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