blob: 1aa8898308db1c05f15c99ecf0eac2de83db66c9 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
[user]
name = Karel Kočí
email = cynerd@email.cz
signingkey = B8788B4BCF4F1190288F95C0FCEF2F764FA7A632
[core]
editor = nvim
excludesfile = /home/cynerd/.gitignore
fsmonitor = true
[checkout]
defaultRemote=origin
[fetch]
recurseSubmodules = true
parallel = 8
writeCommitGraph = true
[pull]
rebase = true
[push]
default = simple
autoSetupRemote = true
[commit]
gpgsign = true
verbose = true
[tag]
gpgSign = true
[merge]
tool = vimdiff
[mergetool "vimdiff"]
cmd = nvim -d $BASE $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J'
[rebase]
updateRefs = true
[rerere]
enabled = true
[branch]
sort = committerdate
[maintenance]
strategy = incremental
[alias]
co = checkout
ci = commit
st = status
br = branch
wt = worktree
sta = stash --all
type = cat-file -t
dump = cat-file -p
please = push --force-with-lease
supdate = submodule update --init --recursive
fclean = "!git clean -xdff && git submodule foreach git clean -xdff && :"
cleanup = "!git branch --merged HEAD --format=\"%(refname:lstrip=2)\" | grep -vx master | xargs git branch -d"
[sendemail]
identity = cynerd@email.cz
envelopeSender = auto
suppresscc = self
confirm = always
[init]
defaultBranch = master
[column]
ui = auto
[includeIf "gitdir:~/elektroline/"]
path = ~/.gitconfig-elektroline
|