-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
35 lines (35 loc) · 823 Bytes
/
gitconfig
File metadata and controls
35 lines (35 loc) · 823 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
[user]
name = Tom Stoecklein
email = tom@stoeckle.in
signingkey = E8B2EA42DAB0C8489B90DEF755828A4F7461698C
[core]
excludesfile = /Users/tom/.gitignore_global
autocrlf = input
pager = diff-so-fancy | less --tabs=4 -RFX
[color]
ui = auto
[color "status"]
changed = yellow
added = green
untracked = red
[alias]
branches = for-each-ref --sort=-committerdate --format=\"%(color:blue)%(authordate:relative)\t%(color:red)%(authorname)\t%(color:white)%(color:bold)%(refname:short)\" refs/remotes
[merge]
ff = only
[fetch]
prune = true
[push]
default = simple
[rebase]
autosquash = true
[credential]
helper = osxkeychain
[commit]
gpgsign = true
[gpg]
program = /usr/local/bin/gpg
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true