Use tabs in gitconfig
This commit is contained in:
parent
87d9ce0d86
commit
3b4d69b9a4
88
gitconfig
88
gitconfig
|
@ -1,57 +1,57 @@
|
||||||
[include]
|
[include]
|
||||||
# local and/or misc changes not committed to Git:
|
# local and/or misc changes not committed to Git:
|
||||||
path = .gitconfig.local
|
path = .gitconfig.local
|
||||||
[alias]
|
[alias]
|
||||||
aa = add .
|
aa = add .
|
||||||
adp = add -p
|
adp = add -p
|
||||||
bn = rev-parse --abbrev-ref HEAD
|
bn = rev-parse --abbrev-ref HEAD
|
||||||
br = branch
|
br = branch
|
||||||
chp = checkout -p
|
chp = checkout -p
|
||||||
ci = commit
|
ci = commit
|
||||||
co = checkout
|
co = checkout
|
||||||
cp = cherry-pick
|
cp = cherry-pick
|
||||||
d = diff
|
d = diff
|
||||||
ds = diff --staged
|
ds = diff --staged
|
||||||
f = fetch
|
f = fetch
|
||||||
fixup = rebase -i --autosquash
|
fixup = rebase -i --autosquash
|
||||||
mr = !git merge $(git rb)
|
mr = !git merge $(git rb)
|
||||||
nuke = reset --hard
|
nuke = reset --hard
|
||||||
pl = pull
|
pl = pull
|
||||||
plr = pull --rebase
|
plr = pull --rebase
|
||||||
pr = diff origin/master
|
pr = diff origin/master
|
||||||
prs = diff --stat origin/master
|
prs = diff --stat origin/master
|
||||||
rb = !git rev-parse --abbrev-ref --symbolic-full-name @{u}
|
rb = !git rev-parse --abbrev-ref --symbolic-full-name @{u}
|
||||||
rc = rebase --continue
|
rc = rebase --continue
|
||||||
rr = !git reset --hard $(git rb)
|
rr = !git reset --hard $(git rb)
|
||||||
shp = show -p
|
shp = show -p
|
||||||
s = status
|
s = status
|
||||||
st = status
|
st = status
|
||||||
undo = reset --soft HEAD^
|
undo = reset --soft HEAD^
|
||||||
[user]
|
[user]
|
||||||
email = rob@netflux.io
|
email = rob@netflux.io
|
||||||
name = Rob Watson
|
name = Rob Watson
|
||||||
[core]
|
[core]
|
||||||
editor = vim
|
editor = vim
|
||||||
quotePath = false
|
quotePath = false
|
||||||
commitGraph = true
|
commitGraph = true
|
||||||
pager = delta
|
pager = delta
|
||||||
[color]
|
[color]
|
||||||
ui = auto
|
ui = auto
|
||||||
[pull]
|
[pull]
|
||||||
ff = only
|
ff = only
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = development
|
defaultBranch = development
|
||||||
[credential "https://github.com"]
|
[credential "https://github.com"]
|
||||||
helper = !gh auth git-credential
|
helper = !gh auth git-credential
|
||||||
[diff]
|
[diff]
|
||||||
tool = vimdiff
|
tool = vimdiff
|
||||||
[merge]
|
[merge]
|
||||||
tool = vimdiff
|
tool = vimdiff
|
||||||
[interactive]
|
[interactive]
|
||||||
diffFilter = delta --color-only
|
diffFilter = delta --color-only
|
||||||
[delta]
|
[delta]
|
||||||
side-by-side = true
|
side-by-side = true
|
||||||
[delta "decorations"]
|
[delta "decorations"]
|
||||||
commit-decoration-style = bold yellow box ul
|
commit-decoration-style = bold yellow box ul
|
||||||
file-style = bold yellow ul
|
file-style = bold yellow ul
|
||||||
file-decoration-style = none
|
file-decoration-style = none
|
||||||
|
|
Loading…
Reference in New Issue