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