Show More
@@ -1,129 +1,135 | |||
|
1 | 1 | # Some default global settings for common merge tools |
|
2 | 2 | |
|
3 | 3 | [merge-tools] |
|
4 | 4 | kdiff3.args=--auto --L1 base --L2 local --L3 other $base $local $other -o $output |
|
5 | 5 | kdiff3.regkey=Software\KDiff3 |
|
6 | 6 | kdiff3.regkeyalt=Software\Wow6432Node\KDiff3 |
|
7 | 7 | kdiff3.regappend=\kdiff3.exe |
|
8 | 8 | kdiff3.fixeol=True |
|
9 | 9 | kdiff3.gui=True |
|
10 | 10 | kdiff3.diffargs=--L1 '$plabel1' --L2 '$clabel' $parent $child |
|
11 | 11 | |
|
12 | 12 | gvimdiff.args=--nofork -d -g -O $local $other $base |
|
13 | 13 | gvimdiff.regkey=Software\Vim\GVim |
|
14 | 14 | gvimdiff.regkeyalt=Software\Wow6432Node\Vim\GVim |
|
15 | 15 | gvimdiff.regname=path |
|
16 | 16 | gvimdiff.priority=-9 |
|
17 | 17 | gvimdiff.diffargs=--nofork -d -g -O $parent $child |
|
18 | 18 | |
|
19 | 19 | vimdiff.args=$local $other $base -c 'redraw | echomsg "hg merge conflict, type \":cq\" to abort vimdiff"' |
|
20 | 20 | vimdiff.check=changed |
|
21 | 21 | vimdiff.priority=-10 |
|
22 | 22 | |
|
23 | 23 | merge.check=conflicts |
|
24 | 24 | merge.priority=-100 |
|
25 | 25 | |
|
26 | 26 | gpyfm.gui=True |
|
27 | 27 | |
|
28 | 28 | meld.gui=True |
|
29 | 29 | meld.args=--label='local' $local --label='merged' $base --label='other' $other -o $output |
|
30 | 30 | meld.check=changed |
|
31 | 31 | meld.diffargs=-a --label='$plabel1' $parent --label='$clabel' $child |
|
32 | 32 | |
|
33 | 33 | tkdiff.args=$local $other -a $base -o $output |
|
34 | 34 | tkdiff.gui=True |
|
35 | 35 | tkdiff.priority=-8 |
|
36 | 36 | tkdiff.diffargs=-L '$plabel1' $parent -L '$clabel' $child |
|
37 | 37 | |
|
38 | 38 | xxdiff.args=--show-merged-pane --exit-with-merge-status --title1 local --title2 base --title3 other --merged-filename $output --merge $local $base $other |
|
39 | 39 | xxdiff.gui=True |
|
40 | 40 | xxdiff.priority=-8 |
|
41 | 41 | xxdiff.diffargs=--title1 '$plabel1' $parent --title2 '$clabel' $child |
|
42 | 42 | |
|
43 | 43 | diffmerge.regkey=Software\SourceGear\SourceGear DiffMerge\ |
|
44 | 44 | diffmerge.regkeyalt=Software\Wow6432Node\SourceGear\SourceGear DiffMerge\ |
|
45 | 45 | diffmerge.regname=Location |
|
46 | 46 | diffmerge.priority=-7 |
|
47 | 47 | diffmerge.args=-nosplash -merge -title1=local -title2=merged -title3=other $local $base $other -result=$output |
|
48 | 48 | diffmerge.check=changed |
|
49 | 49 | diffmerge.gui=True |
|
50 | 50 | diffmerge.diffargs=--nosplash --title1='$plabel1' --title2='$clabel' $parent $child |
|
51 | 51 | |
|
52 | 52 | p4merge.args=$base $local $other $output |
|
53 | 53 | p4merge.regkey=Software\Perforce\Environment |
|
54 | 54 | p4merge.regkeyalt=Software\Wow6432Node\Perforce\Environment |
|
55 | 55 | p4merge.regname=P4INSTROOT |
|
56 | 56 | p4merge.regappend=\p4merge.exe |
|
57 | 57 | p4merge.gui=True |
|
58 | 58 | p4merge.priority=-8 |
|
59 | 59 | p4merge.diffargs=$parent $child |
|
60 | 60 | |
|
61 | p4mergeosx.executable = /Applications/p4merge.app/Contents/MacOS/p4merge | |
|
62 | p4mergeosx.args = $base $local $other $output | |
|
63 | p4mergeosx.gui = True | |
|
64 | p4mergeosx.priority=-8 | |
|
65 | p4mergeosx.diffargs=$parent $child | |
|
66 | ||
|
61 | 67 | tortoisemerge.args=/base:$base /mine:$local /theirs:$other /merged:$output |
|
62 | 68 | tortoisemerge.regkey=Software\TortoiseSVN |
|
63 | 69 | tortoisemerge.regkeyalt=Software\Wow6432Node\TortoiseSVN |
|
64 | 70 | tortoisemerge.check=changed |
|
65 | 71 | tortoisemerge.gui=True |
|
66 | 72 | tortoisemerge.priority=-8 |
|
67 | 73 | tortoisemerge.diffargs=/base:$parent /mine:$child /basename:'$plabel1' /minename:'$clabel' |
|
68 | 74 | |
|
69 | 75 | ecmerge.args=$base $local $other --mode=merge3 --title0=base --title1=local --title2=other --to=$output |
|
70 | 76 | ecmerge.regkey=Software\Elli\xc3\xa9 Computing\Merge |
|
71 | 77 | ecmerge.regkeyalt=Software\Wow6432Node\Elli\xc3\xa9 Computing\Merge |
|
72 | 78 | ecmerge.gui=True |
|
73 | 79 | ecmerge.diffargs=$parent $child --mode=diff2 --title1='$plabel1' --title2='$clabel' |
|
74 | 80 | |
|
75 | 81 | # editmerge is a small script shipped in contrib. |
|
76 | 82 | # It needs this config otherwise it behaves the same as internal:local |
|
77 | 83 | editmerge.args=$output |
|
78 | 84 | editmerge.check=changed |
|
79 | 85 | editmerge.premerge=keep |
|
80 | 86 | |
|
81 | 87 | filemerge.executable=/Developer/Applications/Utilities/FileMerge.app/Contents/MacOS/FileMerge |
|
82 | 88 | filemerge.args=-left $other -right $local -ancestor $base -merge $output |
|
83 | 89 | filemerge.gui=True |
|
84 | 90 | |
|
85 | 91 | ; Windows version of Beyond Compare |
|
86 | 92 | beyondcompare3.args=$local $other $base $output /ro /lefttitle=local /centertitle=base /righttitle=other /automerge /reviewconflicts /solo |
|
87 | 93 | beyondcompare3.regkey=Software\Scooter Software\Beyond Compare 3 |
|
88 | 94 | beyondcompare3.regname=ExePath |
|
89 | 95 | beyondcompare3.gui=True |
|
90 | 96 | beyondcompare3.priority=-2 |
|
91 | 97 | beyondcompare3.diffargs=/lro /lefttitle='$plabel1' /righttitle='$clabel' /solo /expandall $parent $child |
|
92 | 98 | |
|
93 | 99 | ; Linux version of Beyond Compare |
|
94 | 100 | bcompare.args=$local $other $base -mergeoutput=$output -ro -lefttitle=parent1 -centertitle=base -righttitle=parent2 -outputtitle=merged -automerge -reviewconflicts -solo |
|
95 | 101 | bcompare.gui=True |
|
96 | 102 | bcompare.priority=-1 |
|
97 | 103 | bcompare.diffargs=-lro -lefttitle='$plabel1' -righttitle='$clabel' -solo -expandall $parent $child |
|
98 | 104 | |
|
99 | 105 | winmerge.args=/e /x /wl /ub /dl other /dr local $other $local $output |
|
100 | 106 | winmerge.regkey=Software\Thingamahoochie\WinMerge |
|
101 | 107 | winmerge.regkeyalt=Software\Wow6432Node\Thingamahoochie\WinMerge\ |
|
102 | 108 | winmerge.regname=Executable |
|
103 | 109 | winmerge.check=changed |
|
104 | 110 | winmerge.gui=True |
|
105 | 111 | winmerge.priority=-10 |
|
106 | 112 | winmerge.diffargs=/r /e /x /ub /wl /dl '$plabel1' /dr '$clabel' $parent $child |
|
107 | 113 | |
|
108 | 114 | araxis.regkey=SOFTWARE\Classes\TypeLib\{46799e0a-7bd1-4330-911c-9660bb964ea2}\7.0\HELPDIR |
|
109 | 115 | araxis.regappend=\ConsoleCompare.exe |
|
110 | 116 | araxis.priority=-2 |
|
111 | 117 | araxis.args=/3 /a2 /wait /merge /title1:"Other" /title2:"Base" /title3:"Local :"$local $other $base $local $output |
|
112 | 118 | araxis.checkconflict=True |
|
113 | 119 | araxis.binary=True |
|
114 | 120 | araxis.gui=True |
|
115 | 121 | araxis.diffargs=/2 /wait /title1:"$plabel1" /title2:"$clabel" $parent $child |
|
116 | 122 | |
|
117 | 123 | diffuse.priority=-3 |
|
118 | 124 | diffuse.args=$local $base $other |
|
119 | 125 | diffuse.gui=True |
|
120 | 126 | diffuse.diffargs=$parent $child |
|
121 | 127 | |
|
122 | 128 | UltraCompare.regkey=Software\Microsoft\Windows\CurrentVersion\App Paths\UC.exe |
|
123 | 129 | UltraCompare.regkeyalt=Software\Wow6432Node\Microsoft\Windows\CurrentVersion\App Paths\UC.exe |
|
124 | 130 | UltraCompare.args = $base $local $other -title1 base -title3 other |
|
125 | 131 | UltraCompare.priority = -2 |
|
126 | 132 | UltraCompare.gui = True |
|
127 | 133 | UltraCompare.binary = True |
|
128 | 134 | UltraCompare.check = conflicts,changed |
|
129 | 135 | UltraCompare.diffargs=$child $parent -title1 $clabel -title2 $plabel1 |
General Comments 0
You need to be logged in to leave comments.
Login now