blob: 369dcef6288b20a010657b8abb91eb97d020f56f (
plain)
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
|
[core]
fileMode = false
whitespace = true
[user]
name = Urbain Vaes
email = urbain@vaes.uk
; signingKey = 716064C0
[init]
templatedir = ~/.git_template
[alias]
ctags = !.git/hooks/ctags
saveandsync = !git add . && git diff --cached --exit-code || git commit -m "Update" && git push origin master
[http]
sslverify = false
[commit]
; gpgSign = true
verbose = true
[push]
default = simple
[merge]
ff = true
[pull]
rebase = false
[credential]
helper = store
|