-
Notifications
You must be signed in to change notification settings - Fork 11
/
.gitconfig.base
77 lines (77 loc) · 1.4 KB
/
.gitconfig.base
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
[user]
name = Jean-Martin Archer
email = jm@jmartin.ca
[pull]
rebase = true
[push]
autoSetupRemote = true
[rebase]
autoSquash = true
[push]
default = current
[github]
user = j-martin
[core]
commentChar = ";"
excludesfile = ~/.gitignore.global
attributesfile = ~/.gitattributes
[diff]
colorMoved = true
renameLimit = 900
tool = difftastic
algorithm = histogram
[difftool]
prompt = false
tool = difftastic
[difftool "diffsitter"]
cmd = diffsitter "$LOCAL" "$REMOTE"
[difftool "difftastic"]
cmd = difft "$LOCAL" "$REMOTE"
[alias]
clean-all = clean --force -dx --exclude .idea
co = checkout
cp = cherry-pick
cpa = cherry-pick --abort
cpc = cherry-pick --continue
df = difftool
m = merge
r = rebase
re = rebase
rb = rebase
ref = reflog
rf = reflog --date=iso
rs = reset
rv = revert
s = status
st = stash
[magithub]
online = false
[magithub "status"]
includeStatusHeader = false
includePullRequestsSection = false
includeIssuesSection = false
[clubhouse]
user = jm
[log]
follow = true
[url "git@github.com:"]
insteadOf = https://github.com/
[delta]
navigate = true
light = false
features = decorations
line-numbers = true
side-by-side = true
paging = always
[merge]
conflictstyle = zdiff3
[branch]
sort = -committerdate
[init]
defaultBranch = main
[transfer]
fsckobjects = true
[fetch]
fsckobjects = true
[receive]
fsckObjects = true