-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
76 lines (64 loc) · 1.64 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
[user]
email = [email protected]
name = Jackie Li
signingkey = 9D44BB781C299FEF
[alias]
st = status
ci = commit
br = branch
co = checkout
df = diff
ds = diff --staged
lg = log -p
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all --date=local
ls = ls-files
unstage = reset HEAD
undo = reset --soft HEAD~1
# Show files ignored by git:
ign = ls-files -o -i --exclude-standard
[core]
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore_global
[credential "https://gitlab.com"]
tesgo = jackieli
[credential]
helper = store
; [http ]
; proxy = socks5://localhost:7777
; [https ]
; proxy = socks5://localhost:7777
[url "ssh://[email protected]/"]
insteadOf = https://gitlab.com/
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[url "[email protected]:"]
insteadof = https://github.com
;[sendemail]
; smtpserver = smtp.gmail.com
; smtpuser = [email protected]
; smtpencryption = tls
; smtpserverport = 587
[merge]
conflictstyle = diff3
[init]
defaultBranch = main
[commit]
gpgSign = true
[push]
followTags = true
autoSetupRemote = true
[diff]
tool = kitty
guitool = kitty.gui
[difftool]
prompt = false
trustExitCode = true
[difftool "kitty"]
; cmd = /Users/jackieli/personal/kitty/kitty/launcher/kitten diff $LOCAL $REMOTE
cmd = kitten diff $LOCAL $REMOTE
[difftool "kitty.gui"]
cmd = kitten diff $LOCAL $REMOTE