My dotfiles. Period.

before.gitconfig 1021B

1234567891011121314151617181920212223242526272829303132
  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 --edit --message=\"$(~/.gittum/bin/findcat msg_typo)\"'
  12. cmw = !sh -c \
  13. 'git commit --edit --message=\"$(~/.gittum/bin/findcat msg_wip)\"'
  14. co = checkout
  15. com = checkout master
  16. cp = cherry-pick
  17. dc = !clear && git diff --cached
  18. gr = log --graph --full-history --all --color\
  19. --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x1b[0m"
  20. grr = log --graph --full-history --all --color\
  21. --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x1b[0m"\
  22. --simplify-by-decoration
  23. k = !sh -c \
  24. '(which gitk >/dev/null || (echo "gitk not installed" && false)) && gitk'
  25. ka = !sh -c \
  26. '(which gitk >/dev/null || (echo "gitk not installed" && false)) && gitk --all'
  27. rb = rebase
  28. rbi = rebase --interactive
  29. rmv = remote --verbose
  30. sibling = ! ~/.gittum/bin/sibling
  31. st = status
  32. sh = show