My dotfiles. Period.

before.gitconfig 427B

12345678910111213141516171819
  1. [color]
  2. ui = true
  3. [core]
  4. editor = vim
  5. [alias]
  6. ap = !clear && git add --patch
  7. br = branch
  8. cm = commit
  9. cma = commit --amend
  10. co = checkout
  11. com = checkout master
  12. dc = !clear && git diff --cached
  13. gr = log --graph --full-history --all --color\
  14. --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x1b[0m"
  15. rb = rebase
  16. rbi = rebase --interactive
  17. rmv = remote --verbose
  18. st = status
  19. sh = show