-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
48 lines (48 loc) · 1.1 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
[apply]
whitespace = warn
[user]
name = Amitai Schleier
email = [email protected]
signingkey = 7291B37F97F674D0461F0B41C57C37AFFE0C3DE8
[color]
ui = true
[core]
excludesfile = ~/.gitignore_global
pager = delta
[alias]
graph = log --graph --all --date=short --pretty=format:'%C(yellow)%h%Creset %Cgreen%ad%Cblue%d%Creset %s %Cgreen[%an]%Creset'
guygraph = log --graph --date=short --pretty=format:'%h %ad | %s%d [%an]'
tree = log --graph --all --pretty=format:'%Cgreen%h%Creset -%C(auto)%d%Creset %s %C(cyan)<author:%an | committer:%cn>%Creset' --color --decorate
co = checkout
st = status
[push]
default = simple
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[transfer]
fsckobjects = true
[fetch]
fsckobjects = true
[receive]
fsckObjects = true
[diff]
noprefix = true
[pull]
ff = only
[init]
defaultBranch = main
[gpg]
program = gpg2
[safe]
directory = *
[rebase]
autosquash = true
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
[merge]
conflictStyle = zdiff3