git: Tabs to spaces in .gitconfig

I've modified my vim settings to always use spaces (except go or
probably makefiles) since I've last touched my git config.
This commit is contained in:
Hedy Li 2021-09-26 21:28:14 +08:00
parent f2d9357ea3
commit 25a8ad7b7c
Signed by: hedy
GPG Key ID: B51B5A8D1B176372
1 changed files with 16 additions and 16 deletions

View File

@ -14,22 +14,22 @@
defaultBranch = main
[alias]
s = status
c = commit
b = branch
ls-alias = config --get-regexp alias
l = log --oneline
ll = log
ss = status -s
ch = checkout
chb = checkout -b
mylog = log --pretty=format:'%C(yellow)%h %C(bold blue)%an, %C(green)%ar: %C(white)"%s"'
lgraph = log --oneline --graph --decorate --all
brd = branch -d
fame = !python3 -m gitfame
p = push
cmam = commit -am
pushall = !git remote | xargs -L1 git push --all
s = status
c = commit
b = branch
ls-alias = config --get-regexp alias
l = log --oneline
ll = log
ss = status -s
ch = checkout
chb = checkout -b
mylog = log --pretty=format:'%C(yellow)%h %C(bold blue)%an, %C(green)%ar: %C(white)"%s"'
lgraph = log --oneline --graph --decorate --all
brd = branch -d
fame = !python3 -m gitfame
p = push
cmam = commit -am
pushall = !git remote | xargs -L1 git push --all
# Same as pushall but not for all branches
pall = !git remote | xargs -L1 git push