-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
gitconfig
57 lines (49 loc) · 818 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
52
53
54
55
56
[user]
email = [email protected]
# email = [email protected]
name = Tanner Babcock
signingkey = FD27626F
[core]
pager = delta
[interactive]
diffFilter = delta --color-only
[add.interactive]
useBuiltin = false
[delta]
navigate = true
light = false
line-numbers = true
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[gpg]
program = /sbin/gpg
[commit]
gpgSign = true
[tag]
gpgSign = true
[color]
ui = 1
[push]
default = simple
[pull]
ff = only
[alias]
a = add
c = checkout
cm = commit -m
ca = commit --allow-empty-message -m ''
d = diff
dt = diff-tree
dy = diff HEAD^^
dz = diff HEAD^
f = checkout HEAD --
go = remote get-url origin
i = init
so = remote set-url origin
r = rm
rc = rm --cached
s = status -s -b
pusm = push -u origin main
pulm = pull origin main