forked from digitalresistor/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
35 lines (35 loc) · 755 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
[user]
name = Delta Regeer
signingkey = 6521BC4A45BFCE7A
[color]
ui = true
[core]
excludesfile = /Users/xistence/.gitignore_global
[push]
default = simple
[init]
templatedir = ~/dotfiles/git/templates
defaultBranch = main
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
[rerere]
enabled = true
[commit]
gpgsign = true
[protocol "keybase"]
allow = always
[transfer]
fsckobjects = true
[fetch]
fsckobjects = true
[receive]
fsckObjects = true
[fetch "fsck"]
badTimezone = ignore
[pull]
ff = only
[alias]
fswitch = "!f() { git branch --sort=-committerdate | sed -E 's/..(.*)/\\1/' | fzf --query=\"${1}\" | xargs git switch; }; f"
cof = fswitch