-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
75 lines (56 loc) · 1.5 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
[core]
autocrlf = false
[alias]
k = !start gitk HEAD $(git for-each-ref HEAD refs/remotes refs/heads refs/tags --format='"%(refname)"')
g = !start git-gui "$@"
cfg = !start gvim $(git rev-parse --git-dir)/config
[diff]
#compactionHeuristic = true
mnemonicPrefix = true
interHunkContext = 5
indentHeuristics = true
guitool = kdiff3
[branch]
autosetuprebase = remote
[log]
decorate = auto
[rerere]
enabled = true
[merge]
renamelimit = 1000000
tool = kdiff3
[git-tfs]
# gitignore support causes problems, because ignored files are then
# no longer imported. see https://github.com/git-tfs/git-tfs/issues/1209
disable-gitingore-support = true
[tag]
# Sort the tags better, especially with the [versionsort] section below
# ensures that a -rc is sorted before the actual release version if we
# show the versions in ascending order.
sort = version:refname
[versionsort]
# order matters here, as it defines the order of the suffixes
suffix = -rc
suffix = ""
[http]
proxy = 194.145.60.1:9400
[difftool "kdiff3"]
path = C:/Program Files/KDiff3/kdiff3.exe
[mergetool "kdiff3"]
path = C:/Program Files/KDiff3/kdiff3.exe
[guitool "GVim"]
cmd = gvim \"${FILENAME}\"
needsfile = yes
noconsole = yes
[guitool "notepad++"]
cmd = notepad++ -multiInst -nosession \"${FILENAME}\"
needsfile = yes
noconsole = yes
[guitool "gitk --all <file>"]
cmd = gitk --all -- \"${FILENAME}\"
needsfile = yes
noconsole = yes
[guitool "Delete File"]
cmd = rm \"${FILENAME}\"
noconsole = yes
needsfile = yes