-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
51 lines (51 loc) · 967 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
47
48
49
50
51
[user]
name = Peter Hill
email = [email protected]
[color]
diff = auto
status = auto
branch = auto
interactive = auto
[merge]
summary = true
[alias]
co = checkout
st = status
cm = commit
last = log -1 HEAD
hist = log --pretty=tformat:'%C(yellow)%h %Cblue%>(10)%ad %Cgreen%<(15)%aN%Cred%d %Creset%s' --date=short
[apply]
whitespace = nowarn
[core]
excludesfile = ~/.gitignore
pager = less -F
[gc]
auto = 1
[github]
user = ZedThree
[cola]
spellcheck = false
[submodule]
recurse = true
[pull]
ff = only
[commit]
gpgsign = true
[gpg]
program = gpg2
[init]
defaultBranch = main
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[blame]
# Don't restore! Breaks blame if not found. Instead, set on per-project basis
# ignoreRevsFile = .git-blame-ignore-revs
markIgnoredLines = true
markUnblamableLines = true
[column]
ui = auto
[branch]
sort = -committerdate