123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- [color]
- ui = true
- [core]
- editor = vim
- [alias]
- ap = !clear && git add --patch
- br = branch
- cm = commit --verbose
- cma = commit --verbose --amend
- cmf = !sh -c \
- 'git commit --verbose --edit --message=\"$(~/.gittum/bin/findcat msg_flake8)\"'
- cmt = !sh -c \
- 'git commit --verbose --edit --message=\"$(~/.gittum/bin/findcat msg_tmp)\"'
- cmr = !sh -c \
- 'git commit --verbose --edit --message=\"$(~/.gittum/bin/findcat msg_typo)\"'
- cmv = !sh -c \
- 'git commit --verbose --edit --message=\"$(~/.gittum/bin/findcat msg_bumpv)\"'
- cmw = !sh -c \
- 'git commit --verbose --edit --message=\"$(~/.gittum/bin/findcat msg_wip)\"'
- co = checkout
- com = checkout master
- cp = cherry-pick
- dc = !clear && git diff --cached
- gr = log --graph --full-history --color\
- --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x1b[0m"
- gra = log --all --graph --full-history --color\
- --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x1b[0m"
- grr = log --graph --full-history --color\
- --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x1b[0m"\
- --simplify-by-decoration
- k = !sh -c \
- '(which gitk >/dev/null || (echo "gitk not installed" && false)) && gitk $@' --
- ka = !sh -c \
- '(which gitk >/dev/null || (echo "gitk not installed" && false)) && gitk $@ --all' --
- rb = rebase
- rbi = rebase --interactive
- rmv = remote --verbose
- sibling = ! ~/.gittum/bin/sibling
- st = status
- sh = show
- who = ! ~/.gittum/bin/who
- whoo = ! ~/.gittum/bin/whoo
-
- [tag]
- sort = version:refname
|