-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitconfig
44 lines (44 loc) · 857 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
[user]
email = 20868514+carsin@users.noreply.github.com
name = carsin
signingkey = 6F6EB22ACD96F6EE
[core]
editor = nvim
pager = delta --syntax-theme gruvbox-dark --true-color always
[credential "https://dev.azure.com"]
useHttpPath = true
[commit]
gpgSign = true
[color]
ui = auto
[alias]
a = add
rm = rm -r
d = diff
co = checkout
c = commit
cm = commit -m
ca = commit -a
cam = commit -a -m
p = push origin
pf = push origin --force
pl = pull origin
s = status
st = status
amend = commit --amend
[credential]
helper = store --file ~/.cache/git/.git-credentials
[tag]
gpgSign = true
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[delta]
side-by-side = true
[push]
autoSetupRemote = true