-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
53 lines (53 loc) · 1.04 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
[user]
name = Chris Eskow
email = [email protected]
[color]
diff = auto
branch = auto
status = auto
interactive = auto
[core]
editor = vim
pager = less -FRX
[pager]
log = less -FRSX
[diff]
tool = vimdiff
compactionHeuristic = true
[difftool]
prompt = false
[merge]
tool = vimdiff
[mergetool]
prompt = false
keepBackup = false
[push]
default = simple
[rerere]
enabled = true
[alias]
s = status
a = add --all
ci = commit -v
amend = commit -v --amend
co = checkout
b = branch --all
d = diff
ds = diff --stat
dc = diff --cached
dw = diff --word-diff=color
l = log --all --date-order --oneline --graph --decorate
lr = log --all --date-order --oneline --graph --decorate -25
ll = log --all --date-order --graph --pretty='tformat:%C(yellow)%h %C(green)(%ar) %C(blue)%an%C(red)%d %C(reset)%s'
head = log -1
[credential]
helper = cache --timeout 3600
[include]
path = .gitconfig.local
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[init]
defaultBranch = main