-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
76 lines (76 loc) Β· 1.78 KB
/
.gitconfig
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[user]
name = Patrick Wozniak
email = [email protected]
signingkey = D95105068BC8DA2C
[core]
editor = lvim
pager = delta --dark
[color]
ui = true
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "diff"]
meta = yellow
frag = magenta bold
commit = yellow bold
old = red bold
new = green bold
whitespace = red reverse
[alias]
co = checkout
ci = commit
br = branch
pushf = push --force-with-lease
cleanup = "!git branch --merged | grep -v '\\*\\|master\\|develop' | xargs -n 1 git branch -d"
dff = difftool --no-symlinks --dir-diff
[commit]
gpgsign = true
[github]
username = patlux
[includeIf "gitdir:~/dev/dwins/"]
path = ~/dev/dwins/.gitconfig
[includeIf "gitdir:~/dev/pdg/"]
path = ~/dev/pdg/.gitconfig
[includeIf "gitdir:~/dev/mhp/"]
path = ~/dev/mhp/.gitconfig
[includeIf "gitdir:~/dev/ibm/"]
path = ~/dev/ibm/.gitconfig
[includeIf "gitdir:~/dev/sodefa/"]
path = ~/dev/sodefa/.gitconfig
[includeIf "gitdir:~/dev/nordlb/"]
path = ~/dev/nordlb/.gitconfig
[includeIf "gitdir:~/dev/sap/"]
path = ~/dev/sap/.gitconfig
[includeIf "gitdir:~/dev/abl/ABL-Configuration-App-robin/"]
path = ~/dev/abl/.gitconfig-robin
[pull]
rebase = false
[interactive]
diffFilter = delta --color-only
[diff]
tool = kitty
guitool = kitty.gui
[difftool]
prompt = false
trustExitCode = true
[difftool "kitty"]
cmd = kitty +kitten diff $LOCAL $REMOTE
[difftool "kitty.gui"]
cmd = kitty kitty +kitten diff $LOCAL $REMOTE
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[push]
followTags = true
autoSetupRemote = true
[init]
defaultBranch = main
[branch "master"]
rebase = false
[branch "main"]
rebase = false