dotfiles/.gitconfig

52 lines
1021 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
2021-01-18 04:51:18 +00:00
pager = delta
[color]
ui = auto
branch = auto
interactive = auto
status = auto
[push]
default = simple
2020-07-10 18:26:22 +00:00
[pull]
rebase = true
2021-01-18 04:51:18 +00:00
[interactive]
diffFilter = delta --color-only
2021-01-18 04:51:18 +00:00
[delta]
features = side-by-side line-numbers decorations
whitespace-error-style = 22 reverse
2021-01-18 04:51:18 +00:00
[delta "decorations"]
commit-decoration-style = bold yellow box ul
file-style = bold yellow ul
file-decoration-style = none