My dotfiles. Period.

before.gitconfig 694B

12345678910111213141516171819202122232425
  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. cp = cherry-pick
  13. dc = !clear && git diff --cached
  14. gr = log --graph --full-history --all --color\
  15. --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x1b[0m"
  16. grr = log --graph --full-history --all --color\
  17. --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x1b[0m"\
  18. --simplify-by-decoration
  19. rb = rebase
  20. rbi = rebase --interactive
  21. rmv = remote --verbose
  22. st = status
  23. sh = show
  24. cmt = !sh -c \
  25. 'git commit --message=\"$(~/.git-universe/bin/findcat msg_typo)\"'