-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
45 lines (34 loc) · 736 Bytes
/
.gitconfig
File metadata and controls
45 lines (34 loc) · 736 Bytes
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
[user]
name = Matthias Splieth
email = [email protected]
[includeIf "gitdir:~/Projects/customers/"]
path = .gitconfig-work
[includeIf "gitdir:~/Projects/betaset/"]
path = .gitconfig-betaset
[color]
branch = auto
diff = auto
status = auto
[color "status"]
added = yellow
changed = green
untracked = cyan
[push]
default = upstream
[pull]
default = current
rebase = true
[diff]
memonicprefix = true
[alias]
lol = !git commit -m \"$(curl -s whatthecommit.com/index.txt)\"
yolo = !git commit -am \"DEAL WITH IT\" && git push -f origin master
undo = reset HEAD~1 --mixed
[core]
excludesfile = ~/.gitignore
[credential]
UseHttpPath = true
[gpg]
program = gpg
[init]
defaultBranch = main