##// END OF EJS Templates
help: add new deprecated topic...
David Demelier -
r38019:5fa4e29b default
parent child Browse files
Show More
@@ -0,0 +1,30 b''
1 Mercurial evolves over time, some features, options, commands may be replaced by
2 better and more secure alternatives. This topic will help you migrating your
3 existing usage and/or configuration to newer features.
4
5 Commands
6 ========
7
8 The following commands are still available but their use are not recommended:
9
10 ``locate``
11
12 This command has been replaced by `hg files`.
13
14 ``parents``
15
16 This command can be replaced by `hg summary` or `hg log` with appropriate
17 revsets. See `hg help revsets` for more information.
18
19 ``tip``
20
21 The recommended alternative is `hg heads`.
22
23 Options
24 =======
25
26 ``web.allowpull``
27 Renamed to `allow-pull`.
28
29 ``web.allow_push``
30 Renamed to `allow-push`.
@@ -19,6 +19,7 b''
19 <File Name="color.txt" />
19 <File Name="color.txt" />
20 <File Name="config.txt" KeyPath="yes" />
20 <File Name="config.txt" KeyPath="yes" />
21 <File Name="dates.txt" />
21 <File Name="dates.txt" />
22 <File Name="deprecated.txt" />
22 <File Name="diffs.txt" />
23 <File Name="diffs.txt" />
23 <File Name="environment.txt" />
24 <File Name="environment.txt" />
24 <File Name="extensions.txt" />
25 <File Name="extensions.txt" />
@@ -232,6 +232,7 b' helptable = sorted(['
232 (['bundlespec'], _("Bundle File Formats"), loaddoc('bundlespec')),
232 (['bundlespec'], _("Bundle File Formats"), loaddoc('bundlespec')),
233 (['color'], _("Colorizing Outputs"), loaddoc('color')),
233 (['color'], _("Colorizing Outputs"), loaddoc('color')),
234 (["config", "hgrc"], _("Configuration Files"), loaddoc('config')),
234 (["config", "hgrc"], _("Configuration Files"), loaddoc('config')),
235 (['deprecated'], _("Deprecated Features"), loaddoc('deprecated')),
235 (["dates"], _("Date Formats"), loaddoc('dates')),
236 (["dates"], _("Date Formats"), loaddoc('dates')),
236 (["flags"], _("Command-line flags"), loaddoc('flags')),
237 (["flags"], _("Command-line flags"), loaddoc('flags')),
237 (["patterns"], _("File Name Patterns"), loaddoc('patterns')),
238 (["patterns"], _("File Name Patterns"), loaddoc('patterns')),
@@ -353,6 +353,7 b' Testing -h/--help:'
353 color Colorizing Outputs
353 color Colorizing Outputs
354 config Configuration Files
354 config Configuration Files
355 dates Date Formats
355 dates Date Formats
356 deprecated Deprecated Features
356 diffs Diff Formats
357 diffs Diff Formats
357 environment Environment Variables
358 environment Environment Variables
358 extensions Using Additional Features
359 extensions Using Additional Features
@@ -436,6 +437,7 b' Testing -h/--help:'
436 color Colorizing Outputs
437 color Colorizing Outputs
437 config Configuration Files
438 config Configuration Files
438 dates Date Formats
439 dates Date Formats
440 deprecated Deprecated Features
439 diffs Diff Formats
441 diffs Diff Formats
440 environment Environment Variables
442 environment Environment Variables
441 extensions Using Additional Features
443 extensions Using Additional Features
@@ -110,6 +110,7 b' the extension is unknown.'
110 color Colorizing Outputs
110 color Colorizing Outputs
111 config Configuration Files
111 config Configuration Files
112 dates Date Formats
112 dates Date Formats
113 deprecated Deprecated Features
113 diffs Diff Formats
114 diffs Diff Formats
114 environment Environment Variables
115 environment Environment Variables
115 extensions Using Additional Features
116 extensions Using Additional Features
@@ -189,6 +190,7 b' the extension is unknown.'
189 color Colorizing Outputs
190 color Colorizing Outputs
190 config Configuration Files
191 config Configuration Files
191 dates Date Formats
192 dates Date Formats
193 deprecated Deprecated Features
192 diffs Diff Formats
194 diffs Diff Formats
193 environment Environment Variables
195 environment Environment Variables
194 extensions Using Additional Features
196 extensions Using Additional Features
@@ -889,6 +891,7 b' Test that default list of commands omits'
889 color Colorizing Outputs
891 color Colorizing Outputs
890 config Configuration Files
892 config Configuration Files
891 dates Date Formats
893 dates Date Formats
894 deprecated Deprecated Features
892 diffs Diff Formats
895 diffs Diff Formats
893 environment Environment Variables
896 environment Environment Variables
894 extensions Using Additional Features
897 extensions Using Additional Features
@@ -2032,6 +2035,13 b' Dish up an empty repo; serve it cold.'
2032 Date Formats
2035 Date Formats
2033 </td></tr>
2036 </td></tr>
2034 <tr><td>
2037 <tr><td>
2038 <a href="/help/deprecated">
2039 deprecated
2040 </a>
2041 </td><td>
2042 Deprecated Features
2043 </td></tr>
2044 <tr><td>
2035 <a href="/help/diffs">
2045 <a href="/help/diffs">
2036 diffs
2046 diffs
2037 </a>
2047 </a>
@@ -1914,6 +1914,10 b' help/ shows help topics'
1914 "topic": "dates"
1914 "topic": "dates"
1915 },
1915 },
1916 {
1916 {
1917 "summary": "Deprecated Features",
1918 "topic": "deprecated"
1919 },
1920 {
1917 "summary": "Diff Formats",
1921 "summary": "Diff Formats",
1918 "topic": "diffs"
1922 "topic": "diffs"
1919 },
1923 },
General Comments 0
You need to be logged in to leave comments. Login now