-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
34 lines (34 loc) · 752 Bytes
/
.gitconfig
File metadata and controls
34 lines (34 loc) · 752 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
[user]
name = Dolf Barr
email = mail@dolf.me
signingkey = F767A2FA
[core]
editor = code --new-window --wait
[merge]
tool = vscode
[mergetool "vscode"]
cmd = code --new-window --wait $MERGED
[diff]
tool = vscode
[difftool "vscode"]
cmd = code --new-window --wait --diff
[alias]
undo = reset --soft HEAD^
stash-all = stash save --include-untracked
loggy = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset'
[push]
default = simple
autoSetupRemote = true
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[init]
defaultBranch = main
[commit]
gpgSign = false
[tag]
gpgSign = true
[pull]
ff = only