-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
59 lines (59 loc) · 1.26 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
[user]
name = Travis Roberts
email = [email protected]
[credential]
helper = osxkeychain
[alias]
ci = commit
st = status -s
co = checkout
br = branch
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
pushm = push origin main
pullm = pull origin main
pushs = push origin staging
pulls = pull origin staging
fu = fetch upstream -v
fo = fetch origin -v --prune
amend = commit --amend --no-edit
[github]
user = traviskroberts
[color]
diff = auto
status = auto
branch = auto
ui = always
[color "diff"]
meta = yellow bold
commit = green bold
frag = magenta bold
old = red bold
new = green bold
whitespace = red reverse
[merge]
tool = opendiff
[mergetool]
keepBackup = false
[core]
editor = vim
pager = diff-so-fancy | less --tabs=1,5 -RFX
[push]
default = current
[apply]
whitespace = nowarn
[rerere]
enabled = true
[diff]
algorithm = patience
colorMoved = zebra
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[pull]
rebase = true