.dotfiles/.config/git/config

64 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-12-19 20:42:54 +00:00
[user]
2022-10-21 22:58:24 +00:00
email = tobias@msrg.cc
name = Tobias Reisinger
signingkey = 723B78C0BF8D8C721D2C4EEF41E544A54E2533B2
2019-12-19 20:42:54 +00:00
[core]
2022-10-21 22:58:24 +00:00
excludesfile = ~/.config/git/ignore
editor = vim
autocrlf = input
2019-12-19 20:42:54 +00:00
[help]
2022-10-21 22:58:24 +00:00
autocorrect = 20
2024-02-20 02:56:06 +00:00
2019-12-19 20:42:54 +00:00
[diff]
2024-02-20 02:56:06 +00:00
tool = difftastic
2019-12-20 01:35:30 +00:00
[difftool]
2022-10-21 22:58:24 +00:00
prompt = false
2024-02-20 02:56:06 +00:00
[difftool "difftastic"]
cmd = difft "$LOCAL" "$REMOTE"
[pager]
difftool = true
2019-12-20 01:35:30 +00:00
[alias]
2022-10-21 22:58:24 +00:00
b = branch -vv
ci = commit
cia = commit -C HEAD --amend
2024-05-12 16:39:31 +00:00
d = difftool
dc = difftool --cached
ds = difftool --stat
dw = difftool --word-diff=color
2022-10-21 22:58:24 +00:00
l = log --graph
2024-04-30 20:57:39 +00:00
lo = log --graph --decorate --pretty='format:%C(auto)%h <%as>%d %s' --abbrev-commit --all
2022-10-16 18:29:06 +00:00
s = status
2024-02-27 17:44:29 +00:00
ignore-io = "!gi() { curl -sL https://www.toptal.com/developers/gitignore/api/$@ ;}; gi"
2024-02-20 02:56:06 +00:00
[log]
date = iso
2019-12-20 01:35:30 +00:00
[merge]
2024-02-20 02:56:06 +00:00
conflictstyle = zdiff3
[sendemail]
2022-10-21 22:58:24 +00:00
smtpserver = mail.serguzim.me
smtpuser = tobias@msrg.cc
smtpencryption = tls
smtpserverport = 587
annotate = yes
[advice]
2022-10-21 22:58:24 +00:00
addIgnoredFile = false
[pull]
2022-10-21 22:58:24 +00:00
ff = only
2020-07-15 13:50:56 +00:00
[push]
2022-10-21 22:58:24 +00:00
followTags = true
2022-12-12 17:43:54 +00:00
autoSetupRemote = true
2020-08-28 10:53:09 +00:00
[format]
2022-10-21 22:58:24 +00:00
signOff = yes
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[init]
defaultBranch = main
2021-04-07 12:48:22 +00:00
[commit]
gpgsign = true
2022-09-12 08:52:43 +00:00
verbose = true