-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
58 lines (51 loc) · 924 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
57
58
[user]
name = Timothy Sullivan
[init]
defaultBranch = main
[core]
excludesfile = ~/.gitignore_global
ignorecase = false
editor = vim -f
autocrlf = false
filemode = false
compression = 0
[push]
default = current
[merge]
keepBackup = false;
[pull]
rebase = false
[fetch]
prune = true
[branch]
autosetuprebase = always
[commit]
verbose = true
[diff]
tool = difftastic
noprefix = true
[difftool]
prompt = false
[difftool "difftastic"]
cmd = difft "$LOCAL" "$REMOTE"
[pager]
diff = diff-so-fancy | less --tabs=4 -RFX
[rerere]
enabled = true
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
[alias]
co = checkout
cob = checkout -b
lg = log --format='%Cred%h%Creset %s %Cgreen(%cr) %C(blue)<%an>%Creset%C(yellow)%d%Creset'
[hub]
protocol = ssh