1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- [log]
- date = iso
- [color]
- ui = true
- [core]
- editor = vim
- [alias]
- ap = !clear && git add --patch
- br = branch
- bra = branch -avv
- blog = log --graph --oneline --pretty=tformat:'%Cred%h%Creset - %C(yellow)%s%Creset %C(green)<%an>%Creset %C(blue)@%d%Creset' --abbrev-commit
- cm = commit --verbose
- cma = commit --verbose --amend
- cme = commit --allow-empty -m 'WIP empty commit just for the kicks'
- cmv = !~/.config/gittum/bin/metacm msg_bumpv
- cmw = !~/.config/gittum/bin/metacm msg_wip
- co = checkout
- com = checkout master
- cp = cherry-pick
- dc = !clear && git diff --cached
- dcw = !clear && git diff --cached --word-diff=color
- dcp = !clear && git diff --cached --word-diff=porcelain
- dcc = !clear && git diff --cached --word-diff=color --word-diff-regex=.
- df = diff --word-diff=color
- dfp = diff --word-diff=porcelain
- dfc = diff --word-diff=color --word-diff-regex=.
- gr = log --graph --full-history --color\
- --pretty=tformat:"%x1b[31m%h%x20%x1b[32m%d%x1b[0m%x20%s%x1b[0m"
- gra = log --all --graph --full-history --color\
- --pretty=tformat:"%x1b[31m%h%x20%x1b[32m%d%x1b[0m%x20%s%x1b[0m"
- grr = log --graph --full-history --color\
- --pretty=tformat:"%x1b[31m%h%x20%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
- rbc = rebase --continue
- rbi = rebase --interactive
- rme = ! ~/.config/gittum/bin/remote-edit
- rmv = remote --verbose
- sibling = ! ~/.config/gittum/bin/sibling
- slurp = ! ~/.config/gittum/bin/slurp
- st = status
- sh = show
- sw = show --word-diff=color
- swp = show --word-diff=porcelain
- swc = show --word-diff=color --word-diff-regex=.
- swm = show --format="format:%B" --no-patch
- who = ! ~/.config/gittum/bin/who
- whoo = ! ~/.config/gittum/bin/whoo
- xtragc = ! ~/.config/gittum/bin/xtragc
-
- [diff]
- guitool = kdiff3
-
- [push]
- default = simple
-
- [tag]
- sort = version:refname
-
- [gui]
- spellingdictionary = none
-
- [pull]
- ff = only
|