forked from ryanb/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
48 lines (48 loc) · 909 Bytes
/
gitconfig
File metadata and controls
48 lines (48 loc) · 909 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
36
37
38
39
40
41
42
43
44
45
46
47
48
[user]
name = Tom Brice
email = [email protected]
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[color]
ui = true
[core]
excludesfile = /Users/tom/.gitignore
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
editor = atom --wait
[apply]
whitespace = nowarn
[alias]
st = status
ci = commit
br = branch
co = checkout
df = diff
lg = log -p
[branch]
autosetupmerge = true
[push]
default = upstream
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[credential]
helper = osxkeychain
[url "ssh://[email protected]/"]
insteadOf = https://github.com/