dotfiles/home/.gitconfig

85 lines
1.6 KiB
INI
Raw Permalink Normal View History

2013-01-19 17:49:34 +01:00
[user]
email = post@steffenvogel.de
name = Steffen Vogel
2021-08-25 12:30:11 +02:00
signingkey = 09BE3BAE8D55D4CD8579285A9675EAC34897E6E2
2015-06-14 22:09:26 +02:00
[github]
username = stv0g
2016-11-23 20:24:08 -05:00
[apply]
whitespace = nowarn
2015-06-14 22:09:26 +02:00
[shell]
username = stv0g
2013-01-19 17:49:34 +01:00
[color]
2015-06-14 22:09:26 +02:00
ui = auto
2015-06-14 22:09:26 +02:00
[core]
ignorecase = false
2015-06-14 22:09:26 +02:00
[merge]
2016-04-05 19:57:14 +02:00
tool = meld
2015-06-14 22:09:26 +02:00
[diff]
2016-04-05 19:57:14 +02:00
tool = meld
2015-06-14 22:09:26 +02:00
[rerere]
# Store and re-use manual conflict resolution changes.
enabled = 1
2015-06-14 22:09:26 +02:00
[core]
# Exclude everything this file. Used for general exclusions.
2019-11-21 10:26:03 +01:00
excludesfile = ~/.gitignore_global
2015-06-14 22:09:26 +02:00
# Set attributes on files. Used for general diff improvements.
attributesfile = ~/.gitattributes
2016-11-23 20:24:08 -05:00
autocrlf = input
2015-06-14 22:09:26 +02:00
[help]
# Open Git help pages in the browser as HTML.
format = web
autocorrect = 1
[difftool "sourcetree"]
cmd = code-insiders --diff --wait \"$LOCAL\" \"$REMOTE\"
2021-08-25 15:15:06 +02:00
path =
2015-06-14 22:09:26 +02:00
[mergetool "sourcetree"]
cmd = code-insiders -n --wait \"$MERGED\"
2015-06-14 22:09:26 +02:00
trustExitCode = true
[diff "xml"]
2015-07-29 12:27:59 +02:00
textconv = xmllint --format --recover
2017-10-31 14:40:25 +01:00
[alias]
addnw = !sh -c 'git diff -U0 -w --no-color "$@" | git apply --cached --ignore-whitespace --unidiff-zero -'
2018-12-26 11:21:39 +01:00
l = log --oneline
ll = log --graph --pretty=oneline --abbrev-commit
lll = "log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short"
a = add
2021-08-25 15:15:06 +02:00
an = annex
2018-12-26 11:21:39 +01:00
d = diff
p = push
po = push origin
c = commit
s = status
cl= clone
co = checkout
br = branch
type = 'cat-file -t'
dump = 'cat-file -p'
2021-08-25 12:30:11 +02:00
an = annex
2017-10-31 14:40:25 +01:00
2018-12-26 11:23:15 +01:00
[sendemail]
confirm = auto
smtpEncryption = tls
smtpServer = mail.0l.de
smtpUser = stv0g
smtpServerPort = 587
2021-08-25 15:15:06 +02:00
[pull]
rebase = false
2015-10-18 12:23:39 +02:00
[filter "lfs"]
2019-11-11 02:15:08 +01:00
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
2021-08-25 15:15:06 +02:00
required = true