My dotfiles. Period.

main.gitconfig 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [color]
  2. ui = true
  3. [core]
  4. editor = vim
  5. [alias]
  6. ap = !clear && git add --patch
  7. br = branch
  8. bra = branch -avv
  9. blog = log --graph --oneline --pretty=tformat:'%Cred%h%Creset - %C(yellow)%s%Creset %C(green)<%an>%Creset %C(blue)@%d%Creset' --abbrev-commit
  10. cm = commit --verbose
  11. cma = commit --verbose --amend
  12. cmf = !~/.gittum/bin/metacm msg_flake8
  13. cmt = !~/.gittum/bin/metacm msg_tmp
  14. cmr = !~/.gittum/bin/metacm msg_typo
  15. cmv = !~/.gittum/bin/metacm msg_bumpv
  16. cmw = !~/.gittum/bin/metacm msg_wip
  17. co = checkout
  18. com = checkout master
  19. cp = cherry-pick
  20. dc = !clear && git diff --cached
  21. gr = log --graph --full-history --color\
  22. --pretty=tformat:"%x1b[31m%h%x20%x1b[32m%d%x1b[0m%x20%s%x1b[0m"
  23. gra = log --all --graph --full-history --color\
  24. --pretty=tformat:"%x1b[31m%h%x20%x1b[32m%d%x1b[0m%x20%s%x1b[0m"
  25. grr = log --graph --full-history --color\
  26. --pretty=tformat:"%x1b[31m%h%x20%x1b[32m%d%x1b[0m%x20%s%x1b[0m"\
  27. --simplify-by-decoration
  28. k = !sh -c \
  29. '(which gitk >/dev/null || (echo "gitk not installed" && false)) && gitk $@' --
  30. ka = !sh -c \
  31. '(which gitk >/dev/null || (echo "gitk not installed" && false)) && gitk $@ --all' --
  32. rb = rebase
  33. rbc = rebase --continue
  34. rbi = rebase --interactive
  35. rmv = remote --verbose
  36. sibling = ! ~/.gittum/bin/sibling
  37. slurp = ! ~/.gittum/bin/slurp
  38. st = status
  39. sh = show
  40. who = ! ~/.gittum/bin/who
  41. whoo = ! ~/.gittum/bin/whoo
  42. [diff]
  43. guitool = kdiff3
  44. [push]
  45. default = simple
  46. [tag]
  47. sort = version:refname