My dotfiles. Period.

main.gitconfig 1.8KB

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