mirror of https://github.com/mitchell/dotfiles.git
39 lines
727 B
INI
39 lines
727 B
INI
[alias]
|
|
co = checkout
|
|
sco = restore --staged
|
|
br = branch
|
|
cm = commit
|
|
st = status
|
|
rb = rebase
|
|
pfwl = push --force-with-lease
|
|
llog = log --date=local
|
|
flog = log --pretty=fuller --decorate
|
|
lol = log --graph --decorate --oneline
|
|
lola = log --graph --decorate --oneline --all
|
|
blog = log origin/master... --left-right
|
|
ds = diff --staged
|
|
amend = commit --amend -C HEAD
|
|
fixup = commit --fixup
|
|
squash = commit --squash
|
|
unstage = reset HEAD
|
|
rum = rebase master@{u}
|
|
puff = pull --ff-only
|
|
merff = merge --ff-only
|
|
fa = fetch --all
|
|
pa = push --all
|
|
|
|
[core]
|
|
editor = nvim
|
|
|
|
[color]
|
|
ui = auto
|
|
branch = auto
|
|
interactive = auto
|
|
status = auto
|
|
|
|
[push]
|
|
default = simple
|
|
|
|
[pull]
|
|
rebase = true
|