-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
34 lines (34 loc) · 945 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
[alias]
st = status
clean-master-branches = "!git branch --merged master | egrep -v '\\s+master$' | xargs git branch -d"
clean-main-branches = "!git branch --merged main | egrep -v '\\s+main$' | xargs git branch -d"
clean-developed-branches = "!git branch --merged develop | egrep -v '\\s+develop$' | xargs git branch -d"
pending = "log --oneline production/master..staging/master"
fixup = "commit --amend -C HEAD"
[user]
name = Paul Guelpa
email = paul@tryfi.com
signingkey = /Users/pguelpa/.ssh/id_ed25519.pub
[color]
diff = auto
status = auto
branch = auto
ui = true
[github]
user = pguelpa
[push]
default = simple
[url "git@github.com:"]
insteadOf = https://github.com/
[core]
autocrlf = input
excludesfile = /Users/pguelpa/.gitignore
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[gpg]
format = ssh
[commit]
gpgsign = true