author | Bryan O'Sullivan <bos@serpentine.com> |
Mon, 18 Jul 2005 06:54:21 -0800 | |
changeset 724 | 1c0c413cccdd |
parent 671 | efa4a7e2f322 |
child 725 | c6b912f8b5b2 |
permissions | -rw-r--r-- |
177 | 1 |
HG(1) |
2 |
===== |
|
3 |
Matt Mackall <mpm@selenic.com> |
|
4 |
||
5 |
NAME |
|
6 |
---- |
|
438 | 7 |
hg - Mercurial source code management system |
177 | 8 |
|
9 |
SYNOPSIS |
|
10 |
-------- |
|
11 |
'hg' [-v -d -q -y] <command> [command options] [files] |
|
12 |
||
13 |
DESCRIPTION |
|
14 |
----------- |
|
15 |
The hg(1) command provides a command line interface to the Mercurial system. |
|
16 |
||
17 |
OPTIONS |
|
18 |
------- |
|
438 | 19 |
|
177 | 20 |
--debug, -d:: |
21 |
enable debugging output |
|
22 |
||
23 |
--quiet, -q:: |
|
24 |
suppress output |
|
25 |
||
26 |
--verbose, -v:: |
|
27 |
enable additional output |
|
28 |
||
29 |
--noninteractive, -y:: |
|
30 |
do not prompt, assume 'yes' for any required answers |
|
31 |
||
32 |
COMMAND ELEMENTS |
|
33 |
---------------- |
|
34 |
||
35 |
files ...:: |
|
724
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
36 |
indicates one or more filename or relative path filenames; see |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
37 |
"FILE NAME PATTERNS" for information on pattern matching |
177 | 38 |
|
39 |
path:: |
|
40 |
indicates a path on the local machine |
|
41 |
||
478
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
42 |
revision:: |
438 | 43 |
indicates a changeset which can be specified as a changeset revision |
44 |
number, a tag, or a unique substring of the changeset hash value |
|
177 | 45 |
|
46 |
repository path:: |
|
498 | 47 |
either the pathname of a local repository or the URI of a remote |
181
038e4d8602bd
updated for .hgpaths and http/old-http protocol name change
jake@edge2.net
parents:
177
diff
changeset
|
48 |
repository. There are two available URI protocols, http:// which is |
478
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
49 |
fast and the old-http:// protocol which is much slower but does not |
438 | 50 |
require a special server on the web host. |
177 | 51 |
|
52 |
COMMANDS |
|
53 |
-------- |
|
438 | 54 |
|
724
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
55 |
add [options] [files ...]:: |
497 | 56 |
Schedule files to be version controlled and added to the repository. |
57 |
||
498 | 58 |
The files will be added to the repository at the next commit. |
177 | 59 |
|
724
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
60 |
If no names are given, add all files in the current directory and |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
61 |
its subdirectory. |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
62 |
|
177 | 63 |
addremove:: |
497 | 64 |
Add all new files and remove all missing files from the repository. |
65 |
||
66 |
New files are ignored if they match any of the patterns in .hgignore. As |
|
498 | 67 |
with add, these changes take effect at the next commit. |
177 | 68 |
|
438 | 69 |
annotate [-r <rev> -u -n -c] [files ...]:: |
497 | 70 |
List changes in files, showing the revision id responsible for each line |
71 |
||
72 |
This command is useful to discover who did a change or when a change took |
|
73 |
place. |
|
74 |
||
438 | 75 |
options: |
76 |
-r, --revision <rev> annotate the specified revision |
|
77 |
-u, --user list the author |
|
78 |
-c, --changeset list the changeset |
|
79 |
-n, --number list the revision number (default) |
|
177 | 80 |
|
438 | 81 |
cat <file> [revision]:: |
497 | 82 |
Output to stdout the given revision for the specified file. |
83 |
||
498 | 84 |
If no revision is given then the tip is used. |
177 | 85 |
|
485 | 86 |
clone [-U] <source> [dest]:: |
497 | 87 |
Create a copy of an existing repository in a new directory. |
88 |
||
523
003df62ae39f
[PATCH] Force "hg clone" to always create a new directory
mpm@selenic.com
parents:
509
diff
changeset
|
89 |
If no destination directory name is specified, it defaults to the |
003df62ae39f
[PATCH] Force "hg clone" to always create a new directory
mpm@selenic.com
parents:
509
diff
changeset
|
90 |
basename of the source. |
497 | 91 |
|
498 | 92 |
The source is added to the new repository's .hg/hgrc file to be used in |
497 | 93 |
future pulls. |
94 |
||
498 | 95 |
For efficiency, hardlinks are used for cloning whenever the |
96 |
source and destination are on the same filesystem. |
|
497 | 97 |
|
98 |
options: |
|
505 | 99 |
-U, --noupdate do not update the new working directory |
497 | 100 |
|
101 |
commit [-A -t -l <file> -t <text> -u <user> -d <datecode>] [files...]:: |
|
498 | 102 |
Commit changes to the given files into the repository. |
497 | 103 |
|
498 | 104 |
If a list of files is omitted, all changes reported by "hg status" |
105 |
will be commited. |
|
497 | 106 |
|
498 | 107 |
The HGEDITOR or EDITOR environment variables are used to start an |
108 |
editor to add a commit comment. |
|
497 | 109 |
|
110 |
Options: |
|
111 |
||
112 |
-A, --addremove run addremove during commit |
|
113 |
-t, --text <text> use <text> as commit message |
|
114 |
-l, --logfile <file> show the commit message for the given file |
|
115 |
-d, --date <datecode> record datecode as commit date |
|
116 |
-u, --user <user> record user as commiter |
|
117 |
||
118 |
aliases: ci |
|
119 |
||
120 |
copy <source> <dest>:: |
|
121 |
Mark <dest> file as a copy or rename of a <source> one |
|
122 |
||
123 |
This command takes effect for the next commit. |
|
124 |
||
125 |
diff [-r revision] [-r revision] [files ...]:: |
|
126 |
Show differences between revisions for the specified files. |
|
127 |
||
128 |
Differences between files are shown using the unified diff format. |
|
129 |
||
498 | 130 |
When two revision arguments are given, then changes are shown |
131 |
between those revisions. If only one revision is specified then |
|
132 |
that revision is compared to the working directory, and, when no |
|
133 |
revisions are specified, the working directory files are compared |
|
134 |
to its parent. |
|
497 | 135 |
|
580 | 136 |
export [-o filespec] [revision] ...:: |
137 |
Print the changeset header and diffs for one or more revisions. |
|
138 |
||
139 |
The information shown in the changeset header is: author, |
|
140 |
changeset hash, parent and commit comment. |
|
141 |
||
142 |
Output may be to a file, in which case the name of the file is |
|
143 |
given using a format string. The formatting rules are as follows: |
|
497 | 144 |
|
580 | 145 |
%% literal "%" character |
146 |
%H changeset hash (40 bytes of hexadecimal) |
|
147 |
%N number of patches being generated |
|
148 |
%R changeset revision number |
|
149 |
%b basename of the exporting repository |
|
150 |
%h short-form changeset hash (12 bytes of hexadecimal) |
|
151 |
%n zero-padded sequence number, starting at 1 |
|
152 |
%r zero-padded changeset revision number |
|
153 |
||
154 |
Options: |
|
155 |
||
156 |
-o, --output <filespec> print output to file with formatted named |
|
497 | 157 |
|
158 |
forget [files]:: |
|
159 |
Undo an 'hg add' scheduled for the next commit. |
|
160 |
||
161 |
heads:: |
|
162 |
Show all repository head changesets. |
|
163 |
||
498 | 164 |
Repository "heads" are changesets that don't have children |
165 |
changesets. They are where development generally takes place and |
|
166 |
are the usual targets for update and merge operations. |
|
497 | 167 |
|
168 |
identify:: |
|
169 |
Print a short summary of the current state of the repo. |
|
170 |
||
171 |
This summary identifies the repository state using one or two parent |
|
172 |
hash identifiers, followed by a "+" if there are uncommitted changes |
|
173 |
in the working directory, followed by a list of tags for this revision. |
|
174 |
||
175 |
aliases: id |
|
176 |
||
177 |
import [-p <n> -b <base> -q] <patches>:: |
|
178 |
Import a list of patches and commit them individually. |
|
179 |
||
180 |
options: |
|
181 |
-p, --strip <n> directory strip option for patch. This has the same |
|
182 |
meaning as the correnponding patch option |
|
183 |
-b <path> base directory to read patches from |
|
184 |
||
185 |
aliases: patch |
|
186 |
||
496 | 187 |
init:: |
188 |
Initialize a new repository in the current directory. |
|
177 | 189 |
|
724
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
190 |
locate [options] [files]:: |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
191 |
Print all files under Mercurial control whose names match the |
629
2fdf3b1659b9
Clarify man page entry for locate a little.
Bryan O'Sullivan <bos@serpentine.com>
parents:
627
diff
changeset
|
192 |
given patterns. |
627 | 193 |
|
194 |
This command searches the current directory and its |
|
195 |
subdirectories. To search an entire repository, move to the root |
|
196 |
of the repository. |
|
197 |
||
198 |
If no patterns are given to match, this command prints all file |
|
199 |
names. |
|
200 |
||
201 |
If you want to feed the output of this command into the "xargs" |
|
202 |
command, use the "-0" option to both this command and "xargs". |
|
203 |
This will avoid the problem of "xargs" treating single filenames |
|
204 |
that contain white space as multiple file names. |
|
205 |
||
206 |
options: |
|
207 |
||
208 |
-0, --print0 end filenames with NUL, for use with xargs |
|
209 |
-f, --fullpath print complete paths from the filesystem root |
|
724
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
210 |
-I, --include <pat> include directories matching the given patterns |
627 | 211 |
-r, --rev <rev> search the repository as it stood at rev |
724
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
212 |
-X, --exclude <pat> exclude directories matching the given patterns |
627 | 213 |
|
612
9cd745437269
On Sat, Jul 02, 2005 at 02:11:34PM -0700, Matt Mackall wrote:
Alecs King <alecsk@gmail.com>
parents:
608
diff
changeset
|
214 |
log [-r revision ...] [-p] [file]:: |
509 | 215 |
Print the revision history of the specified file or the entire project. |
177 | 216 |
|
509 | 217 |
By default this command outputs: changeset id and hash, tags, |
218 |
parents, user, date and time, and a summary for each commit. The |
|
219 |
-v switch adds some more detail, such as changed files, manifest |
|
220 |
hashes or message signatures. |
|
221 |
||
612
9cd745437269
On Sat, Jul 02, 2005 at 02:11:34PM -0700, Matt Mackall wrote:
Alecs King <alecsk@gmail.com>
parents:
608
diff
changeset
|
222 |
options: |
9cd745437269
On Sat, Jul 02, 2005 at 02:11:34PM -0700, Matt Mackall wrote:
Alecs King <alecsk@gmail.com>
parents:
608
diff
changeset
|
223 |
-r, --rev <A>, ... When a revision argument is given, only this file or |
9cd745437269
On Sat, Jul 02, 2005 at 02:11:34PM -0700, Matt Mackall wrote:
Alecs King <alecsk@gmail.com>
parents:
608
diff
changeset
|
224 |
changelog revision is displayed. With two revision |
9cd745437269
On Sat, Jul 02, 2005 at 02:11:34PM -0700, Matt Mackall wrote:
Alecs King <alecsk@gmail.com>
parents:
608
diff
changeset
|
225 |
arguments all revisions in this range are listed. |
9cd745437269
On Sat, Jul 02, 2005 at 02:11:34PM -0700, Matt Mackall wrote:
Alecs King <alecsk@gmail.com>
parents:
608
diff
changeset
|
226 |
Additional revision arguments may be given repeating |
9cd745437269
On Sat, Jul 02, 2005 at 02:11:34PM -0700, Matt Mackall wrote:
Alecs King <alecsk@gmail.com>
parents:
608
diff
changeset
|
227 |
the above cycle. |
9cd745437269
On Sat, Jul 02, 2005 at 02:11:34PM -0700, Matt Mackall wrote:
Alecs King <alecsk@gmail.com>
parents:
608
diff
changeset
|
228 |
-p, --patch show patch |
552
2204311609a0
Allow specifying revisions in 'hg log' like with 'hg diff'.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
523
diff
changeset
|
229 |
|
509 | 230 |
aliases: history |
497 | 231 |
|
438 | 232 |
manifest [revision]:: |
497 | 233 |
Print a list of version controlled files for the given revision. |
234 |
||
235 |
The manifest is the list of files being version controlled. If no revision |
|
236 |
is given then the tip is used. |
|
438 | 237 |
|
238 |
parents:: |
|
239 |
Print the working directory's parent revisions. |
|
240 |
||
241 |
pull <repository path>:: |
|
498 | 242 |
Pull changes from a remote repository to a local one. |
497 | 243 |
|
498 | 244 |
This finds all changes from the repository at the specified path |
245 |
or URL and adds them to the local repository. By default, this |
|
246 |
does not update the copy of the project in the working directory. |
|
438 | 247 |
|
248 |
options: |
|
249 |
-u, --update update the working directory to tip after pull |
|
250 |
||
251 |
push <destination>:: |
|
497 | 252 |
Push changes from the local repository to the given destination. |
253 |
||
498 | 254 |
This is the symmetrical operation for pull. It helps to move |
255 |
changes from the current repository to a different one. If the |
|
256 |
destination is local this is identical to a pull in that directory |
|
257 |
from the current one. |
|
438 | 258 |
|
259 |
The other currently available push method is SSH. This requires an |
|
260 |
accessible shell account on the destination machine and a copy of |
|
261 |
hg in the remote path. Destinations are specified in the following |
|
262 |
form: |
|
263 |
||
264 |
ssh://[user@]host[:port]/path |
|
265 |
||
266 |
rawcommit [-p -d -u -F -t -l]:: |
|
497 | 267 |
Lowlevel commit, for use in helper scripts. |
268 |
||
269 |
This command is not intended to be used by normal users, as it is |
|
270 |
primarily useful for importing from other SCMs. |
|
177 | 271 |
|
196
48827121af7e
add export, recover, and undo to the man page
jake@edge2.net
parents:
182
diff
changeset
|
272 |
recover:: |
497 | 273 |
Recover from an interrupted commit or pull. |
274 |
||
275 |
This command tries to fix the repository status after an interrupted |
|
276 |
operation. It should only be necessary when Mercurial suggests it. |
|
196
48827121af7e
add export, recover, and undo to the man page
jake@edge2.net
parents:
182
diff
changeset
|
277 |
|
177 | 278 |
remove [files ...]:: |
497 | 279 |
Schedule the indicated files for removal from the repository. |
280 |
||
498 | 281 |
This command shedules the files to be removed at the next commit. |
282 |
This only removes files from the current branch, not from the |
|
283 |
entire project history. |
|
478
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
284 |
|
438 | 285 |
aliases: rm |
177 | 286 |
|
588 | 287 |
revert [names ...]:: |
288 |
Revert any uncommitted modifications made to the named files or |
|
289 |
directories. This restores the contents of the affected files to |
|
290 |
an unmodified state. |
|
291 |
||
292 |
If a file has been deleted, it is recreated. If the executable |
|
293 |
mode of a file was changed, it is reset. |
|
294 |
||
295 |
If a directory is given, all files in that directory and its |
|
296 |
subdirectories are reverted. |
|
297 |
||
298 |
If no arguments are given, all files in the current directory and |
|
299 |
its subdirectories are reverted. |
|
300 |
||
301 |
options: |
|
302 |
-r, --rev <rev> revision to revert to |
|
303 |
-n, --nonrecursive do not recurse into subdirectories |
|
304 |
||
478
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
305 |
root:: |
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
306 |
Print the root directory of the current repository. |
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
307 |
|
606
ea4526f9b1a5
[PATCH] Fix thinko in "serve" man page entry.
mpm@selenic.com
parents:
605
diff
changeset
|
308 |
serve [options]:: |
438 | 309 |
Start a local HTTP repository browser and pull server. |
310 |
||
605
8e82fd763be2
[PATCH] Get "hg serve" to optionally log accesses and errors to files
mpm@selenic.com
parents:
595
diff
changeset
|
311 |
By default, the server logs accesses to stdout and errors to |
8e82fd763be2
[PATCH] Get "hg serve" to optionally log accesses and errors to files
mpm@selenic.com
parents:
595
diff
changeset
|
312 |
stderr. Use the "-A" and "-E" options to log to files. |
8e82fd763be2
[PATCH] Get "hg serve" to optionally log accesses and errors to files
mpm@selenic.com
parents:
595
diff
changeset
|
313 |
|
438 | 314 |
options: |
605
8e82fd763be2
[PATCH] Get "hg serve" to optionally log accesses and errors to files
mpm@selenic.com
parents:
595
diff
changeset
|
315 |
-A, --accesslog <file> name of access log file to write to |
8e82fd763be2
[PATCH] Get "hg serve" to optionally log accesses and errors to files
mpm@selenic.com
parents:
595
diff
changeset
|
316 |
-E, --errorlog <file> name of error log file to write to |
8e82fd763be2
[PATCH] Get "hg serve" to optionally log accesses and errors to files
mpm@selenic.com
parents:
595
diff
changeset
|
317 |
-a, --address <addr> address to use |
8e82fd763be2
[PATCH] Get "hg serve" to optionally log accesses and errors to files
mpm@selenic.com
parents:
595
diff
changeset
|
318 |
-p, --port <n> port to use (default: 8000) |
8e82fd763be2
[PATCH] Get "hg serve" to optionally log accesses and errors to files
mpm@selenic.com
parents:
595
diff
changeset
|
319 |
-n, --name <name> name to show in web pages (default: working dir) |
438 | 320 |
-t, --templatedir <path> web templates to use |
177 | 321 |
|
322 |
status:: |
|
438 | 323 |
Show changed files in the working directory. |
324 |
||
497 | 325 |
The codes used to show the status of files are: |
326 |
||
438 | 327 |
C = changed |
328 |
A = added |
|
329 |
R = removed |
|
330 |
? = not tracked |
|
331 |
||
631
a287f6cd9c6b
Update documentation of hg tag
Radoslaw Szkodzinski <astralstorm@gorzow.mm.pl>
parents:
629
diff
changeset
|
332 |
tag [-l -t <text> -d <datecode> -u <user>] <name> [revision]:: |
497 | 333 |
Name a particular revision using <name>. |
334 |
||
335 |
Tags are used to name particular revisions of the repository and are |
|
336 |
very useful to compare different revision, to go back to significant |
|
498 | 337 |
earlier versions or to mark branch points as releases, etc. |
497 | 338 |
|
498 | 339 |
If no revision is given, the tip is used. |
438 | 340 |
|
498 | 341 |
To facilitate version control, distribution, and merging of tags, |
342 |
they are stored as a file named ".hgtags" which is managed |
|
343 |
similarly to other project files and can be hand-edited if |
|
344 |
necessary. |
|
345 |
||
438 | 346 |
options: |
631
a287f6cd9c6b
Update documentation of hg tag
Radoslaw Szkodzinski <astralstorm@gorzow.mm.pl>
parents:
629
diff
changeset
|
347 |
-l, --local make the tag local |
438 | 348 |
-t, --text <text> message for tag commit log entry |
349 |
-d, --date <datecode> datecode for commit |
|
350 |
-u, --user <user> user for commit |
|
177 | 351 |
|
631
a287f6cd9c6b
Update documentation of hg tag
Radoslaw Szkodzinski <astralstorm@gorzow.mm.pl>
parents:
629
diff
changeset
|
352 |
Note: Local tags are not version-controlled or distributed and are |
a287f6cd9c6b
Update documentation of hg tag
Radoslaw Szkodzinski <astralstorm@gorzow.mm.pl>
parents:
629
diff
changeset
|
353 |
stored in the .hg/localtags file. If there exists a local tag and |
a287f6cd9c6b
Update documentation of hg tag
Radoslaw Szkodzinski <astralstorm@gorzow.mm.pl>
parents:
629
diff
changeset
|
354 |
a public tag with the same name, local tag is used. |
498 | 355 |
|
177 | 356 |
tags:: |
478
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
357 |
List the repository tags. |
438 | 358 |
|
498 | 359 |
This lists both regular and local tags. |
497 | 360 |
|
438 | 361 |
tip:: |
478
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
362 |
Show the tip revision. |
177 | 363 |
|
196
48827121af7e
add export, recover, and undo to the man page
jake@edge2.net
parents:
182
diff
changeset
|
364 |
undo:: |
438 | 365 |
Undo the last commit or pull transaction. |
366 |
||
595 | 367 |
Roll back the last pull or commit transaction on the |
368 |
repository, restoring the project to its earlier state. |
|
369 |
||
370 |
This command should be used with care. There is only one level of |
|
371 |
undo and there is no redo. |
|
372 |
||
373 |
This command is not intended for use on public repositories. Once |
|
374 |
a change is visible for pull by other users, undoing it locally is |
|
375 |
ineffective. |
|
376 |
||
438 | 377 |
update [-m -C] [revision]:: |
498 | 378 |
Update the working directory to the specified revision. |
438 | 379 |
|
498 | 380 |
By default, update will refuse to run if doing so would require |
381 |
merging or discarding local changes. |
|
382 |
||
383 |
With the -m option, a merge will be performed. |
|
384 |
||
385 |
With the -C option, local changes will be lost. |
|
497 | 386 |
|
438 | 387 |
options: |
388 |
-m, --merge allow merging of branches |
|
389 |
-C, --clean overwrite locally modified files |
|
390 |
||
391 |
aliases: up checkout co |
|
392 |
||
393 |
verify:: |
|
394 |
Verify the integrity of the current repository. |
|
395 |
||
396 |
This will perform an extensive check of the repository's |
|
397 |
integrity, validating the hashes and checksums of each entry in |
|
398 |
the changelog, manifest, and tracked files, as well as the |
|
399 |
integrity of their crosslinks and indices. |
|
400 |
||
724
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
401 |
FILE NAME PATTERNS |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
402 |
------------------ |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
403 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
404 |
Mercurial accepts several notations for identifying one or more |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
405 |
file at a time. |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
406 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
407 |
By default, Mercurial treats file names as shell-style extended |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
408 |
glob patterns. |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
409 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
410 |
Alternate pattern notations must be specified explicitly. |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
411 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
412 |
To use a plain path name without any pattern matching, start a |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
413 |
name with "path:". These path names must match completely, from |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
414 |
the root of the current repository. |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
415 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
416 |
To use an extended glob, start a name with "glob:". Globs are |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
417 |
rooted at the current directory; a glob such as "*.c" will match |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
418 |
files ending in ".c" in the current directory only. |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
419 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
420 |
The supported glob syntax extensions are "**" to match any string |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
421 |
across path separators, and "{a,b}" to mean "a or b". |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
422 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
423 |
To use a Perl/Python regular expression, start a name with "re:". |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
424 |
Regexp pattern matching is anchored at the root of the repository. |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
425 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
426 |
Plain examples: |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
427 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
428 |
path:foo/bar a name bar in a directory named foo in the root of |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
429 |
the repository |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
430 |
path:path:name a file or directory named "path:name" |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
431 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
432 |
Glob examples: |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
433 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
434 |
glob:*.c any name ending in ".c" in the current directory |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
435 |
*.c any name ending in ".c" in the current directory |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
436 |
**.c any name ending in ".c" in the current directory, or |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
437 |
any subdirectory |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
438 |
foo/*.c any name ending in ".c" in the directory foo |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
439 |
foo/**.c any name ending in ".c" in the directory foo, or any |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
440 |
subdirectory |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
441 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
442 |
Regexp examples: |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
443 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
444 |
re:.*\.c$ any name ending in ".c", anywhere in the repsitory |
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
445 |
|
1c0c413cccdd
Get add and locate to use new repo and dirstate walk code.
Bryan O'Sullivan <bos@serpentine.com>
parents:
671
diff
changeset
|
446 |
|
580 | 447 |
SPECIFYING SINGLE REVISIONS |
448 |
--------------------------- |
|
449 |
||
450 |
Mercurial accepts several notations for identifying individual |
|
451 |
revisions. |
|
452 |
||
453 |
A plain integer is treated as a revision number. Negative |
|
454 |
integers are treated as offsets from the tip, with -1 denoting the |
|
455 |
tip. |
|
456 |
||
457 |
A 40-digit hexadecimal string is treated as a unique revision |
|
458 |
identifier. |
|
459 |
||
460 |
A hexadecimal string less than 40 characters long is treated as a |
|
461 |
unique revision identifier, and referred to as a short-form |
|
462 |
identifier. A short-form identifier is only valid if it is the |
|
463 |
prefix of one full-length identifier. |
|
464 |
||
465 |
Any other string is treated as a tag name, which is a symbolic |
|
466 |
name associated with a revision identifier. Tag names may not |
|
467 |
contain the ":" character. |
|
468 |
||
469 |
The reserved name "tip" is a special tag that always identifies |
|
470 |
the most recent revision. |
|
471 |
||
472 |
SPECIFYING MULTIPLE REVISIONS |
|
473 |
----------------------------- |
|
474 |
||
475 |
When Mercurial accepts more than one revision, they may be |
|
476 |
specified individually, or provided as a continuous range, |
|
477 |
separated by the ":" character. |
|
478 |
||
479 |
The syntax of range notation is [BEGIN]:[END], where BEGIN and END |
|
480 |
are revision identifiers. Both BEGIN and END are optional. If |
|
481 |
BEGIN is not specified, it defaults to revision number 0. If END |
|
482 |
is not specified, it defaults to the tip. The range ":" thus |
|
483 |
means "all revisions". |
|
484 |
||
485 |
If BEGIN is greater than END, revisions are treated in reverse |
|
486 |
order. |
|
487 |
||
488 |
A range acts as an open interval. This means that a range of 3:5 |
|
489 |
gives 3, 4 and 5. Similarly, a range of 4:2 gives 4, 3, and 2. |
|
196
48827121af7e
add export, recover, and undo to the man page
jake@edge2.net
parents:
182
diff
changeset
|
490 |
|
177 | 491 |
ENVIRONMENT VARIABLES |
492 |
--------------------- |
|
438 | 493 |
|
478
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
494 |
HGEDITOR:: |
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
495 |
This is the name of the editor to use when committing. Defaults to the |
608
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
606
diff
changeset
|
496 |
value of EDITOR. |
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
606
diff
changeset
|
497 |
|
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
606
diff
changeset
|
498 |
(deprecated, use .hgrc) |
478
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
499 |
|
177 | 500 |
HGMERGE:: |
498 | 501 |
An executable to use for resolving merge conflicts. The program |
438 | 502 |
will be executed with three arguments: local file, remote file, |
503 |
ancestor file. |
|
504 |
||
505 |
The default program is "hgmerge", which is a shell script provided |
|
506 |
by Mercurial with some sensible defaults. |
|
177 | 507 |
|
608
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
606
diff
changeset
|
508 |
(deprecated, use .hgrc) |
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
606
diff
changeset
|
509 |
|
177 | 510 |
HGUSER:: |
438 | 511 |
This is the string used for the author of a commit. |
177 | 512 |
|
608
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
606
diff
changeset
|
513 |
(deprecated, use .hgrc) |
d2994b5298fb
Add username/merge/editor to .hgrc
Matt Mackall <mpm@selenic.com>
parents:
606
diff
changeset
|
514 |
|
177 | 515 |
EMAIL:: |
438 | 516 |
If HGUSER is not set, this will be used as the author for a commit. |
177 | 517 |
|
518 |
LOGNAME:: |
|
478
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
519 |
If neither HGUSER nor EMAIL is set, LOGNAME will be used (with |
438 | 520 |
'@hostname' appended) as the author value for a commit. |
177 | 521 |
|
522 |
EDITOR:: |
|
478
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
523 |
This is the name of the editor used in the hgmerge script. It will be |
498 | 524 |
used for commit messages if HGEDITOR isn't set. Defaults to 'vi'. |
438 | 525 |
|
526 |
PYTHONPATH:: |
|
527 |
This is used by Python to find imported modules and may need to be set |
|
528 |
appropriately if Mercurial is not installed system-wide. |
|
177 | 529 |
|
530 |
FILES |
|
531 |
----- |
|
532 |
.hgignore:: |
|
438 | 533 |
This file contains regular expressions (one per line) that describe file |
478
f1804f2e7f35
Update of doc/hg.1.txt
Thomas Arendsen Hein <thomas@intevation.de>
parents:
438
diff
changeset
|
534 |
names that should be ignored by hg. |
177 | 535 |
|
536 |
.hgtags:: |
|
438 | 537 |
This file contains changeset hash values and text tag names (one of each |
177 | 538 |
seperated by spaces) that correspond to tagged versions of the repository |
539 |
contents. |
|
540 |
||
438 | 541 |
$HOME/.hgrc, .hg/hgrc:: |
542 |
This file contains defaults and configuration. Values in .hg/hgrc |
|
671
efa4a7e2f322
Move hgrc documentation out to its own man page, hgrc(5).
Bryan O'Sullivan <bos@serpentine.com>
parents:
631
diff
changeset
|
543 |
override those in .hgrc. See hgrc(5) for details of the contents |
efa4a7e2f322
Move hgrc documentation out to its own man page, hgrc(5).
Bryan O'Sullivan <bos@serpentine.com>
parents:
631
diff
changeset
|
544 |
and format of these files. |
321 | 545 |
|
177 | 546 |
BUGS |
547 |
---- |
|
548 |
Probably lots, please post them to the mailing list (See Resources below) |
|
549 |
when you find them. |
|
550 |
||
671
efa4a7e2f322
Move hgrc documentation out to its own man page, hgrc(5).
Bryan O'Sullivan <bos@serpentine.com>
parents:
631
diff
changeset
|
551 |
SEE ALSO |
efa4a7e2f322
Move hgrc documentation out to its own man page, hgrc(5).
Bryan O'Sullivan <bos@serpentine.com>
parents:
631
diff
changeset
|
552 |
-------- |
efa4a7e2f322
Move hgrc documentation out to its own man page, hgrc(5).
Bryan O'Sullivan <bos@serpentine.com>
parents:
631
diff
changeset
|
553 |
hgrc(5) |
efa4a7e2f322
Move hgrc documentation out to its own man page, hgrc(5).
Bryan O'Sullivan <bos@serpentine.com>
parents:
631
diff
changeset
|
554 |
|
177 | 555 |
AUTHOR |
556 |
------ |
|
557 |
Written by Matt Mackall <mpm@selenic.com> |
|
558 |
||
559 |
RESOURCES |
|
560 |
--------- |
|
561 |
http://selenic.com/mercurial[Main Web Site] |
|
562 |
||
671
efa4a7e2f322
Move hgrc documentation out to its own man page, hgrc(5).
Bryan O'Sullivan <bos@serpentine.com>
parents:
631
diff
changeset
|
563 |
http://www.serpentine.com/mercurial[Wiki site] |
efa4a7e2f322
Move hgrc documentation out to its own man page, hgrc(5).
Bryan O'Sullivan <bos@serpentine.com>
parents:
631
diff
changeset
|
564 |
|
177 | 565 |
http://selenic.com/hg[Source code repository] |
566 |
||
567 |
http://selenic.com/mailman/listinfo/mercurial[Mailing list] |
|
568 |
||
569 |
COPYING |
|
570 |
------- |
|
571 |
Copyright (C) 2005 Matt Mackall. |
|
572 |
Free use of this software is granted under the terms of the GNU General |
|
573 |
Public License (GPL). |