-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
71 lines (54 loc) · 1.16 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
62
63
64
65
66
67
68
69
70
71
[alias]
conflicts = diff --name-only --diff-filter=U
#checkout
co = checkout
cob = checkout -b
#log
glog = log --decorate --graph --abbrev-commit
plog = log --decorate --graph -p
slog = log --decorate --graph --stat
olog = log --decorate --graph --oneline
#ignored
ignored = ls-files -o -i --exclude-standard
[apply]
whitespace = nowarn
[branch]
autosetupmerge = true
[core]
editor = vim
excludesfile = ~/.gitignore
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
[color]
ui = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
frag = magenta bold
meta = yellow bold
new = green bold
old = red bold
whitespace = red reverse
[color "status"]
added = yellow bold
changed = green bold
untracked = cyan bold
[credential]
helper = manager
[diff]
algorithm = histogram
compactionHeuristic = true
indentHeuristic = true
[http]
postBuffer = 524288000
sslVerify = false
[push]
default = simple
[user]
email = me@me
name = Me me
[commit]
verbose = true
[rerere]
enabled = true