-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitconfig
57 lines (57 loc) · 1.21 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
[alias]
clone = 'clone --recurse-submodules'
lgfull = log --oneline --decorate --color --graph
lg = log --oneline --decorate --color
[column]
ui = auto,row,dense
[commit]
gpgsign = true
[core]
autocrlf = true
symlinks = true
hideDotFiles = true
##WIN ONLY sshCommand = 'C:\\Windows\\System32\\OpenSSH\\ssh.exe'
##GUI ONLY editor = code --wait
##CLI ONLY editor = vim
[diff]
# guitool = vscode
[difftool "vscode"]
cmd = code --wait --diff $LOCAL $REMOTE
[fetch]
prune = true
recurseSubmodules = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[gpg]
##WIN ONLY program = c:\\Program Files (x86)\\GnuPG\\bin\\gpg.exe
[i18n]
filesEncoding = utf-8
[merge]
renormalize = true
conflictStyle = diff3
# tool = vscode
[mergetool "vscode"]
cmd = code.exe --wait \"$MERGED\"
[pull]
rebase = true
[push]
recurseSubmodules = on-demand
followTags = true
[rebase]
autoStash = true
autosquash = true
[status]
renames = true
showStash = true
[submodule]
active = .
recurse = true
[tag]
forceSignAnnotated = true
[alias]
clone = 'clone --recursive'
lgfull = log --oneline --decorate --color --graph
lg = log --oneline --decorate --color