-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgitconfig
45 lines (45 loc) · 911 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
36
37
38
39
40
41
42
43
44
45
[user]
name = Bradley Priest
email = [email protected]
[github]
user = 8c64bb7a0706b418f4ac52e5881a8156
[color]
ui = auto
[advice]
statusHints = false
[core]
whitespace = trailing-space,space-before-tab
excludesfile = ~/.gitignore_global
trustctime = false
attributesfile = ~/.gitattributes
[diff]
renames = copies
[branch]
autosetupmerge = true
autosetuprebase = always
[rerere]
enabled = true
[merge]
stat = true
ff = only
conflictstyle = diff3
[push]
default = current
[hub]
protocol = https
[rebase]
autosquash = true
autostash = true
[filter "lfs"]
smudge = git-lfs smudge %f
required = true
clean = git-lfs clean %f
[gpg]
program = gpg1
[help]
autocorrect = 1
[alias]
praise = blame
lb = branch --sort=committerdate
pruneb = !git lb branch --merged master | grep -v -e 'master' -e '\\*' | xargs -n 1 git branch -d && git remote prune origin
remove-untracked = clean -fx