This repository has been archived by the owner on Oct 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
93 lines (92 loc) · 2.35 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#
# srg's git config
#
[advice]
addEmptyPathspec = false
pushUpdateRejected = false
statusHints = false
waitingForEditor = false
[alias]
ap = add -p
bl = branch -av
ci = commit -v
co = checkout
cpx = cherry-pick -x
diffc = diff --cached
dns = diff --name-status
ff = merge --ff-only
graph = log --graph --oneline
in = log --oneline HEAD..@{u}
out = log --oneline @{u}..HEAD
patch = !git --no-pager diff --no-color
psuh = push
puhs = push
rb = rebase --autostash -i @{u}
shown = show --name-status
[color]
ui = true
[color "diff"]
commit = yellow bold
frag = magenta bold
func = 146 bold
meta = 11
new = green bold
old = red bold
whitespace = red reverse
[color "diff-highlight"]
newHighlight = green bold 22
newNormal = green bold
oldHighlight = red bold 52
oldNormal = red bold
[column]
ui = auto
[commit]
gpgsign = true
[core]
autocrlf = false
editor = vim
pager = diff-so-fancy | less --tabs=4 -FRX
whitespace = -blank-at-eof
[diff]
mnemonicPrefix = true
submodule = log
tool = vimdiff
wsErrorHighlight = old,new
[diff-so-fancy]
stripLeadingSymbols = false
[difftool]
prompt = false
[fetch]
fsckObjects = true
prune = true
[gc]
autoDetach = false
[gpg]
program = /usr/bin/gpg
[init]
defaultBranch = main
[interactive]
diffFilter = diff-so-fancy --patch
singleKey = true
[log]
abbrevCommit = true
date = relative
[merge]
tool = vimdiff
[pager]
branch = false
[push]
default = nothing
[rebase]
abbreviateCommands = true
instructionFormat = (%an <%ae>) %s
missingCommitsCheck = error
stat = true
[receive]
fsckObjects = true
[status]
submoduleSummary = true
[transfer]
fsckObjects = true
[user]
name = Steve Guglielmo