-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot.gitconfig-portable-gvim-windows
57 lines (57 loc) · 1.27 KB
/
dot.gitconfig-portable-gvim-windows
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
[user]
email = [email protected]
name = Your Name
signingkey = CBXYXYXYXYXYXYEC
[commit]
gpgsign = true
[gpg]
program = /usr/bin/gpg.exe
# ------------------------OR
program = C:\\Program Files (x86)\\GnuPG\\bin\\gpg.exe
# ------------------------OR
# Leave BLANK on Linux
[core]
editor = 'C:\\Program Files\\Notepad2\\Notepad2.exe'
# ------------------------OR
editor = geany
# ------------------------OR
editor = nano
[color]
ui = true
status = auto
branch = auto
[merge]
tool = winmerge
# ------------------------OR
tool = meld
[diff]
tool = winmerge
# ------------------------OR
tool = meld
[difftool "winmerge"]
path = C:\\Program Files\\WinMerge\\WinMergeU.exe
# ------------------------OR
[difftool "meld"]
path = C:\\msys64\\mingw64\\bin\\meld
[difftool]
prompt = false
trustExitCode = true
keepBackup = false
[mergetool]
prompt = false
trustExitCode = true
keepBackup = false
[mergetool "winmerge"]
path = C:\\Program Files\\WinMerge\\WinMergeU.exe
# ------------------------OR
[mergetool "meld"]
path = C:\\msys64\\mingw64\\bin\\meld
[cola]
spellcheck = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = main