-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.gitconfig
65 lines (65 loc) · 1.3 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
[user]
email = [email protected]
name = FORNO
signingkey = F011F3A8D1709FBA
[alias]
a = add
aa = add -A
ap = add -p
au = add -u
b = branch
ba = branch -a
bd = branch -d
c = commit -s -v
ca = commit -a -s -v
d = diff
dc = diff --cached
dch = diff --check
g = log --graph --date=short --decorate=short --pretty=format:'%Cgreen%h %Creset%cd %Cblue%cn %Cred%d %Creset%s'
ga = log --all --graph --date=short --decorate=short --pretty=format:'%Cgreen%h %Creset%cd %Cblue%cn %Cred%d %Creset%s'
l = log
ld = log --diff-filter=D --summary
lo = log --oneline
lp = log -p
ls = log --stat
s = status
sh = show
st = stash
sw = switch
r = restore
rp = restore -p
rs = restore --staged
[color]
ui = auto
[core]
editor = vi
autocrlf = input
ignorecase = true
[push]
default = simple
gpgSign = if-asked
[rerere]
enabled = true
[tag]
forceSignAnnotated = true
[http "https://gopkg.in"]
followRedirects = true
[commit]
#gpgsign = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[fetch]
prune = true
[init]
defaultBranch = main
[pull]
rebase = false
[credential "https://github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/usr/bin/gh auth git-credential