aboutsummaryrefslogtreecommitdiff
path: root/git/.gitconfig
blob: 1da265b3bc4f946270f8522b9468da0cbd91c1f0 (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 = CC79457AF7EEDD5558E3D8303BFE72132DE3F554
[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