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