aboutsummaryrefslogtreecommitdiff
path: root/git/.gitconfig
blob: 7abe96e65affe7e45567915e58d59796e8bea951 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[user]
    name = bozo.kopic
    email = bozo@kopic.xyz
    signingkey = 1E5A7C9229CE0BEE9488499B61E770F9ED93DF2A
[http]
    sslVerify = false
[branch]
    autosetuprebase = always
[core]
    autocrlf = false
    editor = nvim
    excludesfile = ~/.dotfiles/git/.gitignore
[alias]
    tree = log --graph --pretty='format:"%C(auto)%h [%ad] %an%d: %s"' --date=short
[diff]
    tool = meld
    guitool = meld
    submodule = log
[push]
    default = simple
[difftool "meld"]
    path = /usr/bin/meld
[commit]
    gpgsign = true
[status]
    submodulesummary = 1
[init]
	defaultBranch = master
[sendemail]
    smtpserver = echo.mxrouting.net
    smtpuser = bozo@kopic.xyz
    smtpencryption = ssl
    smtpserverport = 465