dotfiles/.config/git/config

143 lines
3.2 KiB
Plaintext
Raw Normal View History

# -*- indent-tabs-mode: t; -*-
2019-10-24 13:36:40 +00:00
[user]
2022-11-18 02:55:50 +00:00
email = lucien@phundrak.com
name = Lucien Cartier-Tilet
signingkey = BD7789E705CB8DCA
2019-10-24 13:36:40 +00:00
[core]
2022-11-18 02:55:50 +00:00
editor = emacsclient -c -a emacs
whitespace = fix,-indent-with-non-tab,trailing-space
excludesfile = /home/phundrak/dotfiles/.gitignore_global
2019-10-24 13:36:40 +00:00
[web]
2022-11-18 02:55:50 +00:00
browser = firefox
2019-10-24 13:36:40 +00:00
[color]
2022-11-18 02:55:50 +00:00
ui = auto
2019-10-24 13:36:40 +00:00
[alias]
2022-11-18 02:55:50 +00:00
a = add --all
2023-06-30 07:34:49 +00:00
aca = !git add --all && git commit --amend
acan = !git add --all && git commit --amend --no-edit
2022-11-18 02:55:50 +00:00
####
b = branch
2023-06-30 07:34:49 +00:00
bd = branch -d
bdd = branch -D
2022-11-18 02:55:50 +00:00
####
c = commit -S
2023-06-30 07:34:49 +00:00
ca = commit -Sa
can = commit -Sa --no-edit
cm = commit -Sm
cam = commit -Sam
2022-11-18 02:55:50 +00:00
####
co = checkout
cob = checkout -b
2023-06-30 07:34:49 +00:00
cod = checkout develop
2022-11-18 02:55:50 +00:00
####
cl = clone
cl1 = clone --depth=1
####
d = diff -w
####
2023-06-30 07:34:49 +00:00
f = fetch
fp = fetch --prune
####
2022-11-18 02:55:50 +00:00
l = log --oneline --graph --decorate
####
ps = push
2023-06-30 07:34:49 +00:00
psf = push --force-with-lease
2022-11-18 02:55:50 +00:00
pso = push origin
2023-06-30 07:34:49 +00:00
psfo = push --force-with-lease origin
2022-11-18 02:55:50 +00:00
####
pl = pull
pb = pull --rebase
####
2023-06-30 07:34:49 +00:00
r = rebase
ra = rebase --abort
rc = rebase --continue
rd = rebase develop
ri = rebase -i
2022-11-18 02:55:50 +00:00
###
rmf = rm -f
2023-06-30 07:34:49 +00:00
rmd = rm -r
rmdf = rm -rf
2022-11-18 02:55:50 +00:00
####
s = status
2023-06-30 07:34:49 +00:00
####
2022-11-18 02:55:50 +00:00
sm = submodule
sms = submodule status
sma = submodule add
smu = submodule update
smui = submodule update --init
smuir = submodule update --init --recursive
####
staged = diff --cached
####
2023-06-30 07:34:49 +00:00
st = stash
stc = stash clear
stp = stash pop
stw = stash show
2022-11-18 02:55:50 +00:00
####
pushall = !git remote | xargs -L1 git push
psl = !git remote | xargs -L1 git push
pullall = !git remote | xargs -L1 git pull
pll = !git remote | xargs -L1 git pull
####
u = reset --
unstage = reset --
2023-06-30 07:34:49 +00:00
####
upstream = !git push -u origin HEAD
[sendemail]
2022-11-18 02:55:50 +00:00
smtpserver = mail.phundrak.com
smtpuser = lucien@phundrak.com
smtpencryption = tls
smtpserverport = 587
2019-10-24 13:36:40 +00:00
[magithub]
2022-11-18 02:55:50 +00:00
online = true
2019-10-24 13:36:40 +00:00
[magithub "status"]
2022-11-18 02:55:50 +00:00
includeStatusHeader = true
includePullRequestsSection = true
includeIssuesSection = true
2019-10-24 13:36:40 +00:00
[gpg]
2022-11-18 02:55:50 +00:00
program = gpg2
2019-10-24 13:36:40 +00:00
[mergetool.ediff]
2022-11-18 02:55:50 +00:00
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\\\"))\"
2019-10-24 13:36:40 +00:00
[merge]
2022-11-18 02:55:50 +00:00
tool = ediff
2019-10-24 13:36:40 +00:00
[github]
2022-11-18 02:55:50 +00:00
user = phundrak
2019-10-24 21:07:55 +00:00
[commit]
2022-11-18 02:55:50 +00:00
gpgsign = true
2020-07-26 08:21:54 +00:00
[pull]
2022-11-18 02:55:50 +00:00
rebase = false
[init]
2022-11-18 02:55:50 +00:00
defaultBranch = main
[pager]
2022-11-18 02:55:50 +00:00
diff = delta
log = delta
reflog = delta
show = delta
[interactive]
2022-11-18 02:55:50 +00:00
diffFilter = delta --color-only
[delta]
2022-11-18 02:55:50 +00:00
features = side-by-side line-numbers decorations
whitespace-error-style = 22 reverse
[delta "decorations"]
2022-11-18 02:55:50 +00:00
commit-decoration-style = bold yellow box ul
file-style = bold yellow ul
file-decoration-style = none
[credentials "smtp://lucien@phundrak.com@mail.phundrak.com:587"]
2023-06-30 07:34:49 +00:00
helper = "secret-tool lookup password email_lucien-phundrak-com"
2022-11-11 13:41:24 +00:00
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[url "https://phundrak@github.com"]
insteadOf = https://github.com
[url "https://phundrak@labs.phundrak.com"]
insteadOf = https://labs.phundrak.com