My dotfiles. Period.

before.gitconfig 892B

1234567891011121314151617181920212223242526272829
  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. k = !sh -c \
  22. '(which gitk >/dev/null || (echo "gitk not installed" && false)) && gitk'
  23. ka = !sh -c \
  24. '(which gitk >/dev/null || (echo "gitk not installed" && false)) && gitk --all'
  25. rb = rebase
  26. rbi = rebase --interactive
  27. rmv = remote --verbose
  28. st = status
  29. sh = show