-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
43 lines (43 loc) · 928 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
[user]
name = Guy Bianco IV
email = [email protected]
[core]
excludesfile = ~/.gitignore_global
autocrlf = input
[alias]
st = status
co = checkout
contributors = shortlog -sn
graph-simple = log --graph --simplify-by-decoration --pretty=format:'%d' --all
graph = log --graph --full-history --all --color --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x20%x1b[33m(%an)%x1b[0m"
files = diff --name-only origin/main
adoc = files **/*.adoc
[merge]
keepBackup = false
tool = vimdiff
conflictstyle = diff3
[push]
default = simple
[color]
ui = auto
[pull]
rebase = false
[diff]
tool = vimdiff
[difftool]
trustExitCode = true
[mergetool "vimdiff"]
trustExitCode = true
[init]
defaultBranch = main
[mergetool]
prompt = true
[rerere]
enabled = true
[gpg]
format = ssh
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process