[Git] Use proper tabs in config
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
74303bbf02
commit
ad6160204d
@ -1,125 +1,131 @@
|
|||||||
[user]
|
[user]
|
||||||
email = lucien@phundrak.com
|
email = lucien@phundrak.com
|
||||||
name = Lucien Cartier-Tilet
|
name = Lucien Cartier-Tilet
|
||||||
signingkey = BD7789E705CB8DCA
|
signingkey = BD7789E705CB8DCA
|
||||||
[core]
|
[core]
|
||||||
editor = emacsclient -c -a emacs
|
editor = emacsclient -c -a emacs
|
||||||
whitespace = fix,-indent-with-non-tab,trailing-space
|
whitespace = fix,-indent-with-non-tab,trailing-space
|
||||||
excludesfile = /home/phundrak/dotfiles/.gitignore_global
|
excludesfile = /home/phundrak/dotfiles/.gitignore_global
|
||||||
[web]
|
[web]
|
||||||
browser = firefox
|
browser = firefox
|
||||||
[color]
|
[color]
|
||||||
ui = auto
|
ui = auto
|
||||||
[alias]
|
[alias]
|
||||||
a = add --all
|
a = add --all
|
||||||
####
|
####
|
||||||
b = branch
|
b = branch
|
||||||
####
|
####
|
||||||
c = commit -S
|
c = commit -S
|
||||||
ca = commit -a
|
ca = commit -a
|
||||||
cm = commit -m
|
cm = commit -m
|
||||||
cam = commit -am
|
cam = commit -am
|
||||||
####
|
####
|
||||||
co = checkout
|
co = checkout
|
||||||
cob = checkout -b
|
cob = checkout -b
|
||||||
####
|
####
|
||||||
cl = clone
|
cl = clone
|
||||||
cl1 = clone --depth=1
|
cl1 = clone --depth=1
|
||||||
####
|
####
|
||||||
d = diff -w
|
d = diff -w
|
||||||
####
|
####
|
||||||
l = log --oneline --graph --decorate
|
l = log --oneline --graph --decorate
|
||||||
####
|
####
|
||||||
ps = push
|
ps = push
|
||||||
psf = push -f
|
psf = push -f
|
||||||
pso = push origin
|
pso = push origin
|
||||||
psfo = push -f origin
|
psfo = push -f origin
|
||||||
psom = push origin master
|
psom = push origin master
|
||||||
psfom = push -f origin master
|
psfom = push -f origin master
|
||||||
####
|
####
|
||||||
pl = pull
|
pl = pull
|
||||||
pb = pull --rebase
|
pb = pull --rebase
|
||||||
####
|
####
|
||||||
re = reset
|
re = reset
|
||||||
reh = reset --hard
|
reh = reset --hard
|
||||||
rehh = reset --hard HEAD
|
rehh = reset --hard HEAD
|
||||||
####
|
####
|
||||||
r = remote
|
r = remote
|
||||||
ra = remote add
|
ra = remote add
|
||||||
rr = remote rm
|
rr = remote rm
|
||||||
###
|
###
|
||||||
rmf = rm -f
|
rmf = rm -f
|
||||||
rmrf = rm -r -f
|
rmrf = rm -r -f
|
||||||
####
|
####
|
||||||
s = status
|
s = status
|
||||||
sm = submodule
|
sm = submodule
|
||||||
sms = submodule status
|
sms = submodule status
|
||||||
sma = submodule add
|
sma = submodule add
|
||||||
smu = submodule update
|
smu = submodule update
|
||||||
smui = submodule update --init
|
smui = submodule update --init
|
||||||
smuir = submodule update --init --recursive
|
smuir = submodule update --init --recursive
|
||||||
####
|
####
|
||||||
staged = diff --cached
|
staged = diff --cached
|
||||||
####
|
####
|
||||||
sc = stash clear
|
sc = stash clear
|
||||||
sp = stash pop
|
sp = stash pop
|
||||||
sw = stash show
|
sw = stash show
|
||||||
####
|
####
|
||||||
pushall = !git remote | xargs -L1 git push
|
pushall = !git remote | xargs -L1 git push
|
||||||
psl = !git remote | xargs -L1 git push
|
psl = !git remote | xargs -L1 git push
|
||||||
pullall = !git remote | xargs -L1 git pull
|
pullall = !git remote | xargs -L1 git pull
|
||||||
pll = !git remote | xargs -L1 git pull
|
pll = !git remote | xargs -L1 git pull
|
||||||
####
|
####
|
||||||
u = reset --
|
u = reset --
|
||||||
unstage = reset --
|
unstage = reset --
|
||||||
[sendemail]
|
[sendemail]
|
||||||
smtpserver = mail.phundrak.com
|
smtpserver = mail.phundrak.com
|
||||||
smtpuser = lucien@phundrak.com
|
smtpuser = lucien@phundrak.com
|
||||||
smtpencryption = tls
|
smtpencryption = tls
|
||||||
smtpserverport = 587
|
smtpserverport = 587
|
||||||
[magithub]
|
[magithub]
|
||||||
online = true
|
online = true
|
||||||
[magithub "status"]
|
[magithub "status"]
|
||||||
includeStatusHeader = true
|
includeStatusHeader = true
|
||||||
includePullRequestsSection = true
|
includePullRequestsSection = true
|
||||||
includeIssuesSection = true
|
includeIssuesSection = true
|
||||||
[gpg]
|
[gpg]
|
||||||
program = gpg2
|
program = gpg2
|
||||||
[mergetool.ediff]
|
[mergetool.ediff]
|
||||||
cmd = emacs --eval \" (progn (defun ediff-write-merge-buffer () (let ((file ediff-merge-store-file)) (set-buffer ediff-buffer-C) (write-region (point-min) (point-max) file) (message \\\"Merge buffer saved in: %s\\\" file) (set-buffer-modified-p nil) (sit-for 1))) (setq ediff-quit-hook 'kill-emacs ediff-quit-merge-hook 'ediff-write-merge-buffer) (ediff-merge-files-with-ancestor \\\"$LOCAL\\\" \\\"$REMOTE\\\" \\\"$BASE\\\" nil \\\"$MERGED\\\"))\"
|
cmd = emacs --eval \" (progn (defun ediff-write-merge-buffer () (let ((file ediff-merge-store-file)) (set-buffer ediff-buffer-C) (write-region (point-min) (point-max) file) (message \\\"Merge buffer saved in: %s\\\" file) (set-buffer-modified-p nil) (sit-for 1))) (setq ediff-quit-hook 'kill-emacs ediff-quit-merge-hook 'ediff-write-merge-buffer) (ediff-merge-files-with-ancestor \\\"$LOCAL\\\" \\\"$REMOTE\\\" \\\"$BASE\\\" nil \\\"$MERGED\\\"))\"
|
||||||
[merge]
|
[merge]
|
||||||
tool = ediff
|
tool = ediff
|
||||||
[github]
|
[github]
|
||||||
user = phundrak
|
user = phundrak
|
||||||
[commit]
|
[commit]
|
||||||
gpgsign = true
|
gpgsign = true
|
||||||
[pull]
|
[pull]
|
||||||
rebase = false
|
rebase = false
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = main
|
defaultBranch = main
|
||||||
|
|
||||||
[pager]
|
[pager]
|
||||||
diff = delta
|
diff = delta
|
||||||
log = delta
|
log = delta
|
||||||
reflog = delta
|
reflog = delta
|
||||||
show = delta
|
show = delta
|
||||||
|
|
||||||
[interactive]
|
[interactive]
|
||||||
diffFilter = delta --color-only
|
diffFilter = delta --color-only
|
||||||
|
|
||||||
[delta]
|
[delta]
|
||||||
features = side-by-side line-numbers decorations
|
features = side-by-side line-numbers decorations
|
||||||
whitespace-error-style = 22 reverse
|
whitespace-error-style = 22 reverse
|
||||||
|
|
||||||
[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
|
||||||
|
|
||||||
[credentials "smtp://lucien@phundrak.com@mail.phundrak.com:587"]
|
[credentials "smtp://lucien@phundrak.com@mail.phundrak.com:587"]
|
||||||
helper = "pass Email/lucien@phundrak.com | head -n1 | tr -d '\n'"
|
helper = "pass Email/lucien@phundrak.com | head -n1 | tr -d '\n'"
|
||||||
[filter "lfs"]
|
[filter "lfs"]
|
||||||
required = true
|
required = true
|
||||||
clean = git-lfs clean -- %f
|
clean = git-lfs clean -- %f
|
||||||
smudge = git-lfs smudge -- %f
|
smudge = git-lfs smudge -- %f
|
||||||
process = git-lfs filter-process
|
process = git-lfs filter-process
|
||||||
|
[safe]
|
||||||
|
directory = /opt/flutter
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# indent-tabs-mode: t
|
||||||
|
# End:
|
||||||
|
Loading…
Reference in New Issue
Block a user