-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
executable file
·45 lines (45 loc) · 796 Bytes
/
gitconfig
File metadata and controls
executable file
·45 lines (45 loc) · 796 Bytes
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
[core]
editor = code --wait
sshcommand = ssh
autocrlf = input
[user]
name = George Chang
signingkey = 4E9A3B7534AA2A34
email = changg@gmail.com
[alias]
co = checkout
br = branch
ci = commit
st = status
pl = pull
nuke = !git reset --hard && git clean -d -f && :
tree = log --graph --oneline --all
[pull]
rebase = false
[fetch]
prune = false
[rebase]
autoStash = false
[commit]
gpgsign = true
[gpg]
program = gpg
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[push]
default = current
[mergetool]
keepBackup = false
[merge]
tool = vscode
[diff]
tool = vscode
[difftool "vscode"]
cmd = code --wait --diff $LOCAL $REMOTE
[mergetool "vscode"]
cmd = code --wait $MERGED
[init]
defaultBranch = main