-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
99 lines (86 loc) · 1.71 KB
/
gitconfig
File metadata and controls
99 lines (86 loc) · 1.71 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[user]
email = amass1212@gmail.com
name = Andrew Mass
[core]
ignorecase = false
editor = vim
pager = less
whitespace = blank-at-eol,space-before-tab,fix,-indent-with-non-tab,cr-at-eol
[alias]
b = branch
bv = branch --verbose
bva = branch --verbose --all
bD = branch -D
c = commit --verbose
cdi = clean -di
cdxf = clean -dxf
co = checkout
cob = checkout -b
df = diff
f = fetch
g = grep -in
l = log -p --abbrev-commit --pretty=fuller
m = merge
mff = merge --ff-only
p = push
pu = push -u
r = reset
rpo = remote prune origin
s = stash
st = status -sb
[color]
branch = true
diff = true
grep = true
interactive = true
pager = true
showbranch = true
status = true
ui = true
; format: foreground background attribute
; colors: normal, black, red, green, yellow, blue, magenta, cyan, white
; attributes: bold, dim, ul, blink, reverse
[color "branch"]
current = normal normal
local = normal normal
remote = normal normal
upstream = normal normal
plain = normal normal
[color "diff"]
plain = normal normal
meta = normal normal
frag = normal normal
func = normal normal
old = red normal bold
new = green normal bold
commit = normal normal
whitespace = normal normal
[color "status"]
header = white normal bold
added = normal normal
updated = normal normal
changed = normal normal
untracked = normal normal
branch = normal normal
nobranch = normal normal
[column]
ui = auto
[diff]
tool = vimdiff
algorithm = minimal
[difftool]
prompt = false
[help]
autocorrect = 1
[merge]
tool = vim
stat = true
conflictstyle = diff3
[mergetool]
prompt = true
[push]
default = current
[web]
browser = google-chrome
[pull]
ff = only