2019-08-15 04:44:46 +00:00
|
|
|
[alias]
|
|
|
|
co = checkout
|
2020-08-09 23:33:45 +00:00
|
|
|
sco = restore --staged
|
2019-08-15 04:44:46 +00:00
|
|
|
br = branch
|
|
|
|
cm = commit
|
|
|
|
st = status
|
|
|
|
rb = rebase
|
2020-11-15 05:25:00 +00:00
|
|
|
pfwl = push --force-with-lease
|
2019-08-15 04:44:46 +00:00
|
|
|
llog = log --date=local
|
|
|
|
flog = log --pretty=fuller --decorate
|
|
|
|
lol = log --graph --decorate --oneline
|
2024-06-28 22:41:12 +00:00
|
|
|
lola = log --graph --decorate --oneline --all
|
2019-08-15 04:44:46 +00:00
|
|
|
blog = log origin/master... --left-right
|
|
|
|
ds = diff --staged
|
2021-02-01 00:37:35 +00:00
|
|
|
amend = commit --amend -C HEAD
|
2019-08-15 04:44:46 +00:00
|
|
|
fixup = commit --fixup
|
|
|
|
squash = commit --squash
|
|
|
|
unstage = reset HEAD
|
|
|
|
rum = rebase master@{u}
|
2019-11-17 19:28:31 +00:00
|
|
|
puff = pull --ff-only
|
|
|
|
merff = merge --ff-only
|
2020-10-31 22:17:46 +00:00
|
|
|
fa = fetch --all
|
2021-05-17 14:16:45 +00:00
|
|
|
pa = push --all
|
2019-08-15 04:44:46 +00:00
|
|
|
|
|
|
|
[core]
|
2020-02-25 12:48:15 +00:00
|
|
|
editor = nvim
|
2021-01-18 04:51:18 +00:00
|
|
|
pager = delta
|
2019-08-15 04:44:46 +00:00
|
|
|
|
|
|
|
[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
|
2019-08-15 04:44:46 +00:00
|
|
|
|
2021-01-18 04:51:18 +00:00
|
|
|
[delta]
|
|
|
|
features = side-by-side line-numbers decorations
|
|
|
|
whitespace-error-style = 22 reverse
|
2019-08-17 06:12:45 +00:00
|
|
|
|
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
|