dotfiles/.gitconfig

39 lines
727 B
INI
Raw Normal View History

[alias]
co = checkout
2020-08-09 23:33:45 +00:00
sco = restore --staged
br = branch
cm = commit
st = status
rb = rebase
2020-11-15 05:25:00 +00:00
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
2021-02-01 00:37:35 +00:00
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
2021-05-17 14:16:45 +00:00
pa = push --all
[core]
editor = nvim
[color]
ui = auto
branch = auto
interactive = auto
status = auto
[push]
default = simple
2020-07-10 18:26:22 +00:00
[pull]
rebase = true