-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
56 lines (46 loc) · 916 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
46
47
48
49
50
51
52
53
54
55
56
[user]
name = Anthony Deaver
email = [email protected]
[github]
user = anthonydeaver
token = 26d9ac92e9a52bb61ca02814673593e0x83232h80907789301839
[color]
ui = 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
[color "diff"]
whitespace = red reverse
[core]
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
[branch]
autosetupmerge = true
[core]
excludesfile = ~/.gitignore
[alias]
st = status
ci = commit
br = branch
co = checkout
df = diff
pom = push origin master
pod = push origin dev
p = pull
po = pull origin
cia = commit --amend
cim = commit -m
sync = pull origin
[credential]
helper = osxkeychain