-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
61 lines (61 loc) · 1.17 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[alias]
b = branch -vv
bl = blame -wM
cam = commit -am
cm = commit -m
co = checkout
df = diff -w
fu = fetch upstream
lg = log --oneline --decorate --all --graph
mm = merge master
mum = merge upstream/master
pr = pull-request
pum = pull upstream master
s = status -s
cleanup = "!git branch --merged | grep -v '\\*\\|master\\|develop\\|main' | xargs -n 1 git branch -d"
[color]
ui = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
frag = magenta
meta = yellow
new = green
old = red bold
whitespace = red reverse
[color "status"]
added = green
changed = yellow
[commit]
gpgsign = true
[core]
autocrlf = input
editor = vim
attributesfile = /Users/paul/.gitattributes
[gpg]
program = gpg2
[heroku]
account = personal
[pull]
rebase = true
[push]
default = simple
[rerere]
enabled = true
[user]
email = [email protected]
name = Paul Fioravanti
signingkey = 085A6D9C
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[fetch]
prune = true
[init]
defaultBranch = main
[diff]
colorMoved = zebra