Show More
@@ -136,10 +136,9 b' def archive(ui, repo, dest, **opts):' | |||||
136 | '''create unversioned archive of a repository revision |
|
136 | '''create unversioned archive of a repository revision | |
137 |
|
137 | |||
138 | By default, the revision used is the parent of the working |
|
138 | By default, the revision used is the parent of the working | |
139 |
directory; use |
|
139 | directory; use -r to specify a different revision. | |
140 |
|
140 | |||
141 |
To specify the type of archive to create, use |
|
141 | To specify the type of archive to create, use -t. Valid types are: | |
142 | are: |
|
|||
143 |
|
142 | |||
144 | "files" (default): a directory full of files |
|
143 | "files" (default): a directory full of files | |
145 | "tar": tar archive, uncompressed |
|
144 | "tar": tar archive, uncompressed | |
@@ -152,7 +151,7 b' def archive(ui, repo, dest, **opts):' | |||||
152 | using a format string; see 'hg help export' for details. |
|
151 | using a format string; see 'hg help export' for details. | |
153 |
|
152 | |||
154 | Each member added to an archive file has a directory prefix |
|
153 | Each member added to an archive file has a directory prefix | |
155 |
prepended. Use |
|
154 | prepended. Use -p to specify a format string for the prefix. The | |
156 | default is the basename of the archive, with suffixes removed. |
|
155 | default is the basename of the archive, with suffixes removed. | |
157 | ''' |
|
156 | ''' | |
158 |
|
157 | |||
@@ -1830,9 +1829,9 b' def locate(ui, repo, *pats, **opts):' | |||||
1830 | names. |
|
1829 | names. | |
1831 |
|
1830 | |||
1832 | If you want to feed the output of this command into the "xargs" |
|
1831 | If you want to feed the output of this command into the "xargs" | |
1833 |
command, use the |
|
1832 | command, use the -0 option to both this command and "xargs". This | |
1834 |
|
|
1833 | will avoid the problem of "xargs" treating single filenames that | |
1835 |
|
|
1834 | contain white space as multiple filenames. | |
1836 | """ |
|
1835 | """ | |
1837 | end = opts.get('print0') and '\0' or '\n' |
|
1836 | end = opts.get('print0') and '\0' or '\n' | |
1838 | rev = opts.get('rev') or None |
|
1837 | rev = opts.get('rev') or None | |
@@ -2656,7 +2655,7 b' def serve(ui, repo, **opts):' | |||||
2656 | Start a local HTTP repository browser and pull server. |
|
2655 | Start a local HTTP repository browser and pull server. | |
2657 |
|
2656 | |||
2658 | By default, the server logs accesses to stdout and errors to |
|
2657 | By default, the server logs accesses to stdout and errors to | |
2659 |
stderr. Use the |
|
2658 | stderr. Use the -A and -E options to log to files. | |
2660 | """ |
|
2659 | """ | |
2661 |
|
2660 | |||
2662 | if opts["stdio"]: |
|
2661 | if opts["stdio"]: |
General Comments 0
You need to be logged in to leave comments.
Login now