-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
46 lines (46 loc) · 1.02 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
[user]
email = [email protected]
name = Steven Silvester
signingkey = B1BF5EC3A8B32F91
[github]
user = blink1073
[push]
default = current
[color]
diff = auto
status = auto
branch = auto
ui = auto
[core]
excludesfile = ~/.gitignore
editor = vim
pager = less -r
[gui]
fontui = -family Inconsolata -size 12 -weight normal -slant roman -underline 0 -overstrike 0
fontdiff = -family Inconsolata -size 12 -weight normal -slant roman -underline 0 -overstrike 0
[alias]
st = status
co = checkout
po = push origin
ca = checkout -a
del = branch --delete
sdiff = diff --staged
wdiff = diff --word-diff
prlog = log --grep 'Merge pull request'
qlog = log --pretty=oneline --abbrev-commit --graph --decorate
[url "https://"]
insteadOf = git://
[init]
defaultBranch = main
[rebase]
autoStash = true
[merge]
autoStash = true
conflictStyle = zdiff3
[pull]
autoStash = true
rebase = false
[checkout]
defaultRemote = origin
[commit]
gpgsign = true