-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
32 lines (32 loc) · 958 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
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[user]
name = Simon Bein
email = [email protected]
signingkey = 8A8A68258B4E118E
[core]
pager = diff-so-fancy | less --tabs=4 -RFX
excludesfile = /Users/simonbein/.gitignore
editor = nvim
[push]
#default = matching
default = current
[pull]
#default = matching
default = current
rebase = true
[fetch]
prune = true
[init]
defaultBranch = main
[credential "https://source.developers.google.com"]
helper = gcloud.sh
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[commit]
gpgsign = true # it should be fine to set this on global level, as I am mainly working on OpenSource Software for now. In case of private repos which are not OpenSource, this could be overwritten per Repo
[checkout]
defaultRemote = origin