My dotfiles. Period.

main.gitconfig 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. rme = ! ~/.gittum/bin/remote-edit
  36. rmv = remote --verbose
  37. sibling = ! ~/.gittum/bin/sibling
  38. slurp = ! ~/.gittum/bin/slurp
  39. st = status
  40. sh = show
  41. sw = show --word-diff=color
  42. swp = show --word-diff=porcelain
  43. swc = show --word-diff=color --word-diff-regex=.
  44. who = ! ~/.gittum/bin/who
  45. whoo = ! ~/.gittum/bin/whoo
  46. xtragc = ! ~/.gittum/bin/xtragc
  47. [diff]
  48. guitool = kdiff3
  49. [push]
  50. default = simple
  51. [tag]
  52. sort = version:refname
  53. [gui]
  54. spellingdictionary = none
  55. [pull]
  56. ff = only