##// END OF EJS Templates
commands: improve some command summaries
Matt Mackall -
r10889:e25c450c default
parent child Browse files
Show More
@@ -2855,7 +2855,7 b' def revert(ui, repo, *pats, **opts):'
2855 2855 wlock.release()
2856 2856
2857 2857 def rollback(ui, repo, **opts):
2858 """roll back the last transaction
2858 """roll back the last transaction (dangerous)
2859 2859
2860 2860 This command should be used with care. There is only one level of
2861 2861 rollback, and there is no way to undo a rollback. It will also
@@ -2891,7 +2891,7 b' def root(ui, repo):'
2891 2891 ui.write(repo.root + "\n")
2892 2892
2893 2893 def serve(ui, repo, **opts):
2894 """export the repository via HTTP
2894 """start stand-alone webserver
2895 2895
2896 2896 Start a local HTTP repository browser and pull server.
2897 2897
@@ -3316,7 +3316,7 b' def unbundle(ui, repo, fname1, *fnames, '
3316 3316 return postincoming(ui, repo, modheads, opts.get('update'), None)
3317 3317
3318 3318 def update(ui, repo, node=None, rev=None, clean=False, date=None, check=False):
3319 """update working directory
3319 """update working directory (or switch revisions)
3320 3320
3321 3321 Update the repository's working directory to the specified
3322 3322 changeset.
@@ -186,9 +186,9 b' list of commands:'
186 186 rename rename files; equivalent of copy + remove
187 187 resolve various operations to help finish a merge
188 188 revert restore individual files or directories to an earlier state
189 rollback roll back the last transaction
189 rollback roll back the last transaction (dangerous)
190 190 root print the root (top) of the current working directory
191 serve export the repository via HTTP
191 serve start stand-alone webserver
192 192 showconfig show combined config settings from all hgrc files
193 193 status show changed files in the working directory
194 194 summary summarize working directory state
@@ -196,7 +196,7 b' list of commands:'
196 196 tags list repository tags
197 197 tip show the tip revision
198 198 unbundle apply one or more changegroup files
199 update update working directory
199 update update working directory (or switch revisions)
200 200 verify verify the integrity of the repository
201 201 version output version and copyright information
202 202
@@ -255,9 +255,9 b' list of commands:'
255 255 rename rename files; equivalent of copy + remove
256 256 resolve various operations to help finish a merge
257 257 revert restore individual files or directories to an earlier state
258 rollback roll back the last transaction
258 rollback roll back the last transaction (dangerous)
259 259 root print the root (top) of the current working directory
260 serve export the repository via HTTP
260 serve start stand-alone webserver
261 261 showconfig show combined config settings from all hgrc files
262 262 status show changed files in the working directory
263 263 summary summarize working directory state
@@ -265,7 +265,7 b' list of commands:'
265 265 tags list repository tags
266 266 tip show the tip revision
267 267 unbundle apply one or more changegroup files
268 update update working directory
268 update update working directory (or switch revisions)
269 269 verify verify the integrity of the repository
270 270 version output version and copyright information
271 271
@@ -15,10 +15,10 b' basic commands:'
15 15 pull pull changes from the specified source
16 16 push push changes to the specified destination
17 17 remove remove the specified files on the next commit
18 serve export the repository via HTTP
18 serve start stand-alone webserver
19 19 status show changed files in the working directory
20 20 summary summarize working directory state
21 update update working directory
21 update update working directory (or switch revisions)
22 22
23 23 use "hg help" for the full list of commands or "hg -v" for details
24 24 add add the specified files on the next commit
@@ -34,10 +34,10 b' use "hg help" for the full list of comma'
34 34 pull pull changes from the specified source
35 35 push push changes to the specified destination
36 36 remove remove the specified files on the next commit
37 serve export the repository via HTTP
37 serve start stand-alone webserver
38 38 status show changed files in the working directory
39 39 summary summarize working directory state
40 update update working directory
40 update update working directory (or switch revisions)
41 41 Mercurial Distributed SCM
42 42
43 43 list of commands:
@@ -79,9 +79,9 b' list of commands:'
79 79 rename rename files; equivalent of copy + remove
80 80 resolve various operations to help finish a merge
81 81 revert restore individual files or directories to an earlier state
82 rollback roll back the last transaction
82 rollback roll back the last transaction (dangerous)
83 83 root print the root (top) of the current working directory
84 serve export the repository via HTTP
84 serve start stand-alone webserver
85 85 showconfig show combined config settings from all hgrc files
86 86 status show changed files in the working directory
87 87 summary summarize working directory state
@@ -89,7 +89,7 b' list of commands:'
89 89 tags list repository tags
90 90 tip show the tip revision
91 91 unbundle apply one or more changegroup files
92 update update working directory
92 update update working directory (or switch revisions)
93 93 verify verify the integrity of the repository
94 94 version output version and copyright information
95 95
@@ -144,9 +144,9 b' use "hg -v help" to show aliases and glo'
144 144 rename rename files; equivalent of copy + remove
145 145 resolve various operations to help finish a merge
146 146 revert restore individual files or directories to an earlier state
147 rollback roll back the last transaction
147 rollback roll back the last transaction (dangerous)
148 148 root print the root (top) of the current working directory
149 serve export the repository via HTTP
149 serve start stand-alone webserver
150 150 showconfig show combined config settings from all hgrc files
151 151 status show changed files in the working directory
152 152 summary summarize working directory state
@@ -154,7 +154,7 b' use "hg -v help" to show aliases and glo'
154 154 tags list repository tags
155 155 tip show the tip revision
156 156 unbundle apply one or more changegroup files
157 update update working directory
157 update update working directory (or switch revisions)
158 158 verify verify the integrity of the repository
159 159 version output version and copyright information
160 160
@@ -206,13 +206,13 b' basic commands:'
206 206 remove, rm:
207 207 remove the specified files on the next commit
208 208 serve:
209 export the repository via HTTP
209 start stand-alone webserver
210 210 status, st:
211 211 show changed files in the working directory
212 212 summary, sum:
213 213 summarize working directory state
214 214 update, up, checkout, co:
215 update working directory
215 update working directory (or switch revisions)
216 216
217 217 global options:
218 218 -R --repository repository root directory or name of overlay bundle file
@@ -487,10 +487,10 b' basic commands:'
487 487 pull pull changes from the specified source
488 488 push push changes to the specified destination
489 489 remove remove the specified files on the next commit
490 serve export the repository via HTTP
490 serve start stand-alone webserver
491 491 status show changed files in the working directory
492 492 summary summarize working directory state
493 update update working directory
493 update update working directory (or switch revisions)
494 494
495 495 use "hg help" for the full list of commands or "hg -v" for details
496 496 hg: unknown command 'skjdfks'
@@ -511,10 +511,10 b' basic commands:'
511 511 pull pull changes from the specified source
512 512 push push changes to the specified destination
513 513 remove remove the specified files on the next commit
514 serve export the repository via HTTP
514 serve start stand-alone webserver
515 515 status show changed files in the working directory
516 516 summary summarize working directory state
517 update update working directory
517 update update working directory (or switch revisions)
518 518
519 519 use "hg help" for the full list of commands or "hg -v" for details
520 520 %% test command with no help text
@@ -565,9 +565,9 b' list of commands:'
565 565 rename rename files; equivalent of copy + remove
566 566 resolve various operations to help finish a merge
567 567 revert restore individual files or directories to an earlier state
568 rollback roll back the last transaction
568 rollback roll back the last transaction (dangerous)
569 569 root print the root (top) of the current working directory
570 serve export the repository via HTTP
570 serve start stand-alone webserver
571 571 showconfig show combined config settings from all hgrc files
572 572 status show changed files in the working directory
573 573 summary summarize working directory state
@@ -575,7 +575,7 b' list of commands:'
575 575 tags list repository tags
576 576 tip show the tip revision
577 577 unbundle apply one or more changegroup files
578 update update working directory
578 update update working directory (or switch revisions)
579 579 verify verify the integrity of the repository
580 580 version output version and copyright information
581 581
@@ -17,10 +17,10 b' basic commands:'
17 17 pull pull changes from the specified source
18 18 push push changes to the specified destination
19 19 remove remove the specified files on the next commit
20 serve export the repository via HTTP
20 serve start stand-alone webserver
21 21 status show changed files in the working directory
22 22 summary summarize working directory state
23 update update working directory
23 update update working directory (or switch revisions)
24 24
25 25 use "hg help" for the full list of commands or "hg -v" for details
26 26 % help (mq present)
@@ -18,10 +18,10 b' basic commands:'
18 18 pull pull changes from the specified source
19 19 push push changes to the specified destination
20 20 remove remove the specified files on the next commit
21 serve export the repository via HTTP
21 serve start stand-alone webserver
22 22 status show changed files in the working directory
23 23 summary summarize working directory state
24 update update working directory
24 update update working directory (or switch revisions)
25 25
26 26 use "hg help" for the full list of commands or "hg -v" for details
27 27 0: a
General Comments 0
You need to be logged in to leave comments. Login now