-
Notifications
You must be signed in to change notification settings - Fork 5
/
.arcconfig
52 lines (52 loc) · 1.08 KB
/
.arcconfig
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
[alias]
app = commit --amend -C HEAD
br = branch
ci = commit
co = checkout
di = diff
dic = diff --cached
sh = show -M -C -C
st = status -s
cp = cherry-pick
hist = log --format="{color.green}{commit}{color.reset}\t{color.cyan}{author:20}{color.reset}\t{title}"
[color]
diff = auto
status = auto
branch = auto
[color "branch"]
current = green reverse
local = green
remote = red
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
whitespace = red reverse
[color "status"]
untracked = cyan
[svn]
rmdir = true
[core]
safecrlf = true
whitespace = space-before-tab,trailing-space
excludesfile = ~/.gitignore
[push]
default = upstream
followTags = true
[pull]
rebase = true
[gc]
auto = 0
[branch]
autosetuprebase = always
[merge]
tool = diffconflicts
[mergetool "diffconflicts"]
cmd = diffconflicts vim $BASE $LOCAL $REMOTE $MERGED
trustExitCode = true
keepBackup = false
[advice]
statushints = false
[diff]
algorithm = patience