-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
46 lines (46 loc) · 827 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
[user]
name = Jon C
email = [email protected]
[credential]
helper = cache --timeout=3600
[difftool]
prompt = false
[diff]
tool = difftastic
algorithm = histogram
colorMoved = default
submodule = log
[difftool "difftastic"]
cmd = difft --display inline "$LOCAL" "$REMOTE"
[pager]
difftool = true
[alias]
g = grep
b = branch
s = switch
d = diff
fp = fetch --prune
st = status
pl = pull --rebase
logdog = log --decorate --pretty=oneline --abbrev-commit --graph
loglint = log --format=%s -- .
dt = difftool
[push]
default = simple
[pull]
rebase = true
[core]
excludesfile = ~/.gitignore_global
autocrlf = input
[merge]
conflictstyle = zdiff3
[init]
defaultBranch = main
[commit]
verbose = true
[rerere]
enabled = true
[status]
submoduleSummary = true
[submodule]
recurse = true