-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
50 lines (47 loc) · 827 Bytes
/
.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
[user]
name = Thorsten Hoeger
[core]
autocrlf = false
[credential]
helper = /usr/bin/gp credential-helper
[color]
ui = true
diff = true
grep = true
branch = true
showbranch = true
status = true
[color "diff"]
plain = normal dim
meta = yellow dim
frag = blue bold
old = red
new = green
whitespace = red reverse
[color "status"]
header = normal dim
added = yellow
untracked = magenta
[color "branch"]
current = yellow reverse
local = yellow
remote = red
[push]
default = current
[pull]
rebase = true
[branch "main"]
rebase = true
mergeoptions = --no-ff
[branch "master"]
rebase = true
mergeoptions = --no-ff
[branch]
autosetuprebase = always
[alias]
wipe = reset --hard HEAD
[github]
user = hoegertn
[init]
defaultBranch = main