Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

ini: remove extension list from shipped mercurial.rc file

This is now redundant with the settings tool and is often out of date, so it's
best just to remove it.

Changeset bb73dd8a84d6

Parent 48af0440a59b

by Steve Borho

Changes to one file · Browse files at bb73dd8a84d6 Showing diff from parent 48af0440a59b Diff from another changeset...

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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
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
75
76
77
78
79
80
 ; System-wide Mercurial config file.  ;  ; See http://www.selenic.com/mercurial/hgrc.5.html or the file  ; 'hgrc.5.html' in the 'docs' subdirectory for help about the syntax  ; and semantics of mercurial.ini files.  ;  ; !!! Do Not Edit This File !!!  ;  ; This file will be replaced by the installer on every upgrade.  ; Editing this file can cause strange side effects on Vista.  ;  ; http://bitbucket.org/tortoisehg/stable/issue/135  ;  ; To change settings you see in this file, override (or enable) them in  ; your user Mercurial.ini file, where USERNAME is your Windows user name:  ;  ; XP or older - C:\Documents and Settings\USERNAME\Mercurial.ini  ; Vista or later - C:\Users\USERNAME\Mercurial.ini    [ui]  ; editor used to enter commit logs, etc. Most any text editor  ; will suffice.  editor = notepad    ; In order to push/pull over ssh you must specify a ssh tool  ssh = "TortoisePlink.exe" -ssh -2  ;ssh = C:\cygwin\bin\ssh    ;  ; For more information about mercurial extensions, start here  ; http://www.selenic.com/mercurial/wiki/index.cgi/UsingExtensions  ;    [extensions] -; extensions shipped with Mercurial by default -; -;acl = -;bugzilla = -;children = -;churn = -;color = -;convert = -;extdiff = -;eol = -;fetch = -;gpg = -;graphlog = -;hgcia = -;hgk = -;highlight = -;interhg = -;keyword = -;mq = -;notify = -;pager = -;patchbomb = -;progress = -;purge = -;rebase = -;record = -;schemes = -;transplant = -;win32mbcs = -;win32text = -;zeroconf = -; Extra extensions bundled with TortoiseHg -;fold = -;perfarce = -;mercurial_keyring = -  ; fixfrozenexts is enabled by default. It allows extension help  ; to work "out of the box" from binary installers.  fixfrozenexts =    ;  ; Define external diff commands, for hg command line use only  ;  [extdiff]  ;kdiff3 =    ; The git extended diff format will properly store binary files,  ; file permission changes, and rename information that the normal  ; patch format cannot cover. However it is also not 100% compatible  ; with tools which expect normal patches. so enable these at your  ; own risk.  ;  [diff]  ;git = false  ;nodates = false    ;  ; Keyword extension example configuration. To use, one must  ; enable the keyword extension, then uncomment and modify these  ; two sections. Before using the keyword extension, be sure to  ; thoroughly read it's documentation and understand how it works,  ; and why it is not a core feature of Mercurial.  ;  ; http://www.selenic.com/mercurial/wiki/index.cgi/KeywordExtension  ; http://www.selenic.com/mercurial/wiki/index.cgi/KeywordPlan  ;  ; If you encounter strange problems using Mercurial, a good first  ; debugging step would be to disable this extension.  ;  [keyword]  ; expand keywords in all python files in working dir  ;**.py =    [keywordmaps]  ; See documentation for examples    ; The schemes extension must be enabled to use one of these shortcuts.  ; See http://mercurial.selenic.com/wiki/SchemesExtension  [schemes]  ;bb = http://bitbucket.org/  ;bb+ssh = ssh://hg@bitbucket.org/  ;py = http://code.python.org/hg/