Mercurial > hg
annotate tests/test-help.t @ 25757:4d1382fd96ff
context: write dirstate out explicitly at the end of markcommitted
To detect change of a file without redundant comparison of file
content, dirstate recognizes a file as certainly clean, if:
(1) it is already known as "normal",
(2) dirstate entry for it has valid (= not "-1") timestamp, and
(3) mode, size and timestamp of it on the filesystem are as same as
ones expected in dirstate
This works as expected in many cases, but doesn't in the corner case
that changing a file keeps mode, size and timestamp of it on the
filesystem.
The timetable below shows steps in one of typical such situations:
---- ----------------------------------- ----------------
timestamp of "f"
----------------
dirstate file-
time action mem file system
---- ----------------------------------- ---- ----- -----
* *** ***
- 'hg transplant REV1 REV2 ...'
- transplanting REV1
....
N
- change "f", but keep size N
(via 'patch.patch()')
- 'dirstate.normal("f")' N ***
(via 'repo.commit()')
- transplanting REV2
- change "f", but keep size N
(via 'patch.patch()')
- aborted while patching
N+1
- release wlock
- 'dirstate.write()' N N N
- 'hg status' shows "r1" as "clean" N N N
---- ----------------------------------- ---- ----- -----
The most important point is that 'dirstate.write()' is executed at N+1
or later. This causes writing dirstate timestamp N of "f" out
successfully. If it is executed at N, 'parsers.pack_dirstate()'
replaces timestamp N with "-1" before actual writing dirstate out.
This issue can occur when 'hg transplant' satisfies conditions below:
- multiple revisions to be transplanted change the same file
- those revisions don't change mode and size of the file, and
- the 2nd or later revision of them fails after changing the file
The root cause of this issue is that files are changed without
flushing in-memory dirstate changes via 'repo.commit()' (even though
omitting 'dirstate.normallookup()' on files changed by 'patch.patch()'
for efficiency also causes this issue).
To detect changes of files correctly, this patch writes in-memory
dirstate changes out explicitly after marking files as clean in
'committablectx.markcommitted()', which is invoked via
'repo.commit()'.
After this change, timetable is changed as below:
---- ----------------------------------- ----------------
timestamp of "f"
----------------
dirstate file-
time action mem file system
---- ----------------------------------- ---- ----- -----
* *** ***
- 'hg transplant REV1 REV2 ...'
- transplanting REV1
....
N
- change "f", but keep size N
(via 'patch.patch()')
- 'dirstate.normal("f")' N ***
(via 'repo.commit()')
----------------------------------- ---- ----- -----
- 'dirsttate.write()' -1 -1
----------------------------------- ---- ----- -----
- transplanting REV2
- change "f", but keep size N
(via 'patch.patch()')
- aborted while patching
N+1
- release wlock
- 'dirstate.write()' -1 -1 N
- 'hg status' shows "r1" as "clean" -1 -1 N
---- ----------------------------------- ---- ----- -----
To reproduce this issue in tests certainly, this patch emulates some
timing critical actions as below:
- change "f" at N
'patch.patch()' with 'fakepatchtime.py' explicitly changes mtime
of patched files to "2000-01-01 00:00" (= N).
- 'dirstate.write()' via 'repo.commit()' at N
'fakedirstatewritetime.py' forces 'pack_dirstate()' to use
"2000-01-01 00:00" as "now", only if 'pack_dirstate()' is invoked
via 'committablectx.markcommitted()'.
- 'dirstate.write()' via releasing wlock at N+1 (or "not at N")
'pack_dirstate()' via releasing wlock uses actual timestamp at
runtime as "now", and it should be different from the "2000-01-01
00:00" of "f".
BTW, this patch doesn't test cases below, even though 'patch.patch()'
is used similarly in these cases:
1. failure of 'hg import' or 'hg qpush'
2. success of 'hg import', 'hg qpush' or 'hg transplant'
Case (1) above doesn't cause this kind of issue, because:
- if patching is aborted by conflicts, changed files are committed
changed files are marked as CLEAN, even though they are partially
patched.
- otherwise, dirstate are fully restored by 'dirstateguard'
For example in timetable above, timestamp of "f" in .hg/dirstate
is restored to -1 (or less than N), and subsequent 'hg status' can
detect changes correctly.
Case (2) always causes 'repo.status()' invocation via 'repo.commit()'
just after changing files inside same wlock scope.
---- ----------------------------------- ----------------
timestamp of "f"
----------------
dirstate file-
time action mem file system
---- ----------------------------------- ---- ----- -----
N *** ***
- make file "f" clean N
- execute 'hg foobar'
....
- 'dirstate.normal("f")' N ***
(e.g. via dirty check
or previous 'repo.commit()')
- change "f", but keep size N
- 'repo.status()' (*1)
(via 'repo.commit()')
---- ----------------------------------- ---- ----- -----
At a glance, 'repo.status()' at (*1) seems to cause similar issue (=
"changed files are treated as clean"), but actually doesn't.
'dirstate._lastnormaltime' should be N at (*1) above, because
'dirstate.normal()' via dirty check is finished at N.
Therefore, "f" changed at N (= 'dirstate._lastnormaltime') is forcibly
treated as "unsure" at (*1), and changes are detected as expected (see
'dirstate.status()' for detail).
If 'hg import' is executed with '--no-commit', 'repo.status()' isn't
invoked just after changing files inside same wlock scope.
But preceding 'dirstate.normal()' is invoked inside another wlock
scope via 'cmdutil.bailifchanged()', and in-memory changes should be
flushed at the end of that scope.
Therefore, timestamp N of clean "f" should be replaced by -1, if
'dirstate.write()' is invoked at N. It means that condition of this
issue isn't satisfied.
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Wed, 08 Jul 2015 17:01:09 +0900 |
parents | 2a8d8b4097c8 |
children | 9de443515f1d |
rev | line source |
---|---|
12328
b63f6422d2a7
tests: fix a bunch of pointless #s in unified tests
Matt Mackall <mpm@selenic.com>
parents:
12316
diff
changeset
|
1 Short help: |
331 | 2 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
3 $ hg |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
4 Mercurial Distributed SCM |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
5 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
6 basic commands: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
7 |
16853
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
8 add add the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
9 annotate show changeset information by line for each file |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
10 clone make a copy of an existing repository |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
11 commit commit the specified files or all outstanding changes |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
12 diff diff repository (or selected files) |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
13 export dump the header and diffs for one or more changesets |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
14 forget forget the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
15 init create a new repository in the given directory |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
16 log show revision history of entire repository or files |
23400
3bd577a3283e
merge: be precise about what merged into what in short desc
anatoly techtonik <techtonik@gmail.com>
parents:
23122
diff
changeset
|
17 merge merge another revision into working directory |
16853
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
18 pull pull changes from the specified source |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
19 push push changes to the specified destination |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
20 remove remove the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
21 serve start stand-alone webserver |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
22 status show changed files in the working directory |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
23 summary summarize working directory state |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
24 update update working directory (or switch revisions) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
25 |
22118
9a299c39de01
help: normalize helplist hints
Matt Mackall <mpm@selenic.com>
parents:
22117
diff
changeset
|
26 (use "hg help" for the full list of commands or "hg -v" for details) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
27 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
28 $ hg -q |
16853
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
29 add add the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
30 annotate show changeset information by line for each file |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
31 clone make a copy of an existing repository |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
32 commit commit the specified files or all outstanding changes |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
33 diff diff repository (or selected files) |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
34 export dump the header and diffs for one or more changesets |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
35 forget forget the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
36 init create a new repository in the given directory |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
37 log show revision history of entire repository or files |
23400
3bd577a3283e
merge: be precise about what merged into what in short desc
anatoly techtonik <techtonik@gmail.com>
parents:
23122
diff
changeset
|
38 merge merge another revision into working directory |
16853
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
39 pull pull changes from the specified source |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
40 push push changes to the specified destination |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
41 remove remove the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
42 serve start stand-alone webserver |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
43 status show changed files in the working directory |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
44 summary summarize working directory state |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
45 update update working directory (or switch revisions) |
10110
9ed13f718e53
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
896
diff
changeset
|
46 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
47 $ hg help |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
48 Mercurial Distributed SCM |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
49 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
50 list of commands: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
51 |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
52 add add the specified files on the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
53 addremove add all new files, delete all missing files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
54 annotate show changeset information by line for each file |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
55 archive create an unversioned archive of a repository revision |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
56 backout reverse effect of earlier changeset |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
57 bisect subdivision search of changesets |
21762
0c6cdbb697d9
bookmarks: improve the bookmark help (issue4244)
Matt Mackall <mpm@selenic.com>
parents:
21289
diff
changeset
|
58 bookmarks create a new bookmark or list existing bookmarks |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
59 branch set or show the current branch name |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
60 branches list repository named branches |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
61 bundle create a changegroup file |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
62 cat output the current or given revision of files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
63 clone make a copy of an existing repository |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
64 commit commit the specified files or all outstanding changes |
20570
c21e1e3ab915
config: move showconfig code and add config as primary alias
Matt Mackall <mpm@selenic.com>
parents:
20245
diff
changeset
|
65 config show combined config settings from all hgrc files |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
66 copy mark files as copied for the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
67 diff diff repository (or selected files) |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
68 export dump the header and diffs for one or more changesets |
22423
edf07a804ac4
files: add new command unifying locate and manifest functionality
Matt Mackall <mpm@selenic.com>
parents:
22118
diff
changeset
|
69 files list tracked files |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
70 forget forget the specified files on the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
71 graft copy changes from other branches onto the current branch |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
72 grep search for a pattern in specified files and revisions |
19469
bf6bc4681383
heads: modernize documentation (issue3992)
Matt Mackall <mpm@selenic.com>
parents:
19434
diff
changeset
|
73 heads show branch heads |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
74 help show help for a given topic or a help overview |
24364
135b23868f45
commands: replace "working copy" with "working directory" in help/messages
Yuya Nishihara <yuya@tcha.org>
parents:
24347
diff
changeset
|
75 identify identify the working directory or specified revision |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
76 import import an ordered set of patches |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
77 incoming show new changesets found in source |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
78 init create a new repository in the given directory |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
79 log show revision history of entire repository or files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
80 manifest output the current or given revision of the project manifest |
23400
3bd577a3283e
merge: be precise about what merged into what in short desc
anatoly techtonik <techtonik@gmail.com>
parents:
23122
diff
changeset
|
81 merge merge another revision into working directory |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
82 outgoing show changesets not found in the destination |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
83 paths show aliases for remote repositories |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
84 phase set or show the current phase name |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
85 pull pull changes from the specified source |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
86 push push changes to the specified destination |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
87 recover roll back an interrupted transaction |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
88 remove remove the specified files on the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
89 rename rename files; equivalent of copy + remove |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
90 resolve redo merges or set/view the merge status of files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
91 revert restore files to their checkout state |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
92 root print the root (top) of the current working directory |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
93 serve start stand-alone webserver |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
94 status show changed files in the working directory |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
95 summary summarize working directory state |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
96 tag add one or more tags for the current or given revision |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
97 tags list repository tags |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
98 unbundle apply one or more changegroup files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
99 update update working directory (or switch revisions) |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
100 verify verify the integrity of the repository |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
101 version output version and copyright information |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
102 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
103 additional help topics: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
104 |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
105 config Configuration Files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
106 dates Date Formats |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
107 diffs Diff Formats |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
108 environment Environment Variables |
16547
23072be2eaa3
help: consistently use title capitalization for help topics
Martin Geisler <mg@aragost.com>
parents:
15996
diff
changeset
|
109 extensions Using Additional Features |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
110 filesets Specifying File Sets |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
111 glossary Glossary |
16547
23072be2eaa3
help: consistently use title capitalization for help topics
Martin Geisler <mg@aragost.com>
parents:
15996
diff
changeset
|
112 hgignore Syntax for Mercurial Ignore Files |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
113 hgweb Configuring hgweb |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
114 merge-tools Merge Tools |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
115 multirevs Specifying Multiple Revisions |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
116 patterns File Name Patterns |
15996 | 117 phases Working with Phases |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
118 revisions Specifying Single Revisions |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
119 revsets Specifying Revision Sets |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
120 subrepos Subrepositories |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
121 templating Template Usage |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
122 urls URL Paths |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
123 |
22118
9a299c39de01
help: normalize helplist hints
Matt Mackall <mpm@selenic.com>
parents:
22117
diff
changeset
|
124 (use "hg help -v" to show built-in aliases and global options) |
10446
a565a2445eb5
commands: add verbose example to help text for add
Martin Geisler <mg@lazybytes.net>
parents:
10144
diff
changeset
|
125 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
126 $ hg -q help |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
127 add add the specified files on the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
128 addremove add all new files, delete all missing files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
129 annotate show changeset information by line for each file |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
130 archive create an unversioned archive of a repository revision |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
131 backout reverse effect of earlier changeset |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
132 bisect subdivision search of changesets |
21762
0c6cdbb697d9
bookmarks: improve the bookmark help (issue4244)
Matt Mackall <mpm@selenic.com>
parents:
21289
diff
changeset
|
133 bookmarks create a new bookmark or list existing bookmarks |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
134 branch set or show the current branch name |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
135 branches list repository named branches |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
136 bundle create a changegroup file |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
137 cat output the current or given revision of files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
138 clone make a copy of an existing repository |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
139 commit commit the specified files or all outstanding changes |
20570
c21e1e3ab915
config: move showconfig code and add config as primary alias
Matt Mackall <mpm@selenic.com>
parents:
20245
diff
changeset
|
140 config show combined config settings from all hgrc files |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
141 copy mark files as copied for the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
142 diff diff repository (or selected files) |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
143 export dump the header and diffs for one or more changesets |
22423
edf07a804ac4
files: add new command unifying locate and manifest functionality
Matt Mackall <mpm@selenic.com>
parents:
22118
diff
changeset
|
144 files list tracked files |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
145 forget forget the specified files on the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
146 graft copy changes from other branches onto the current branch |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
147 grep search for a pattern in specified files and revisions |
19469
bf6bc4681383
heads: modernize documentation (issue3992)
Matt Mackall <mpm@selenic.com>
parents:
19434
diff
changeset
|
148 heads show branch heads |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
149 help show help for a given topic or a help overview |
24364
135b23868f45
commands: replace "working copy" with "working directory" in help/messages
Yuya Nishihara <yuya@tcha.org>
parents:
24347
diff
changeset
|
150 identify identify the working directory or specified revision |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
151 import import an ordered set of patches |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
152 incoming show new changesets found in source |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
153 init create a new repository in the given directory |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
154 log show revision history of entire repository or files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
155 manifest output the current or given revision of the project manifest |
23400
3bd577a3283e
merge: be precise about what merged into what in short desc
anatoly techtonik <techtonik@gmail.com>
parents:
23122
diff
changeset
|
156 merge merge another revision into working directory |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
157 outgoing show changesets not found in the destination |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
158 paths show aliases for remote repositories |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
159 phase set or show the current phase name |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
160 pull pull changes from the specified source |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
161 push push changes to the specified destination |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
162 recover roll back an interrupted transaction |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
163 remove remove the specified files on the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
164 rename rename files; equivalent of copy + remove |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
165 resolve redo merges or set/view the merge status of files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
166 revert restore files to their checkout state |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
167 root print the root (top) of the current working directory |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
168 serve start stand-alone webserver |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
169 status show changed files in the working directory |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
170 summary summarize working directory state |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
171 tag add one or more tags for the current or given revision |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
172 tags list repository tags |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
173 unbundle apply one or more changegroup files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
174 update update working directory (or switch revisions) |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
175 verify verify the integrity of the repository |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
176 version output version and copyright information |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
177 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
178 additional help topics: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
179 |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
180 config Configuration Files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
181 dates Date Formats |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
182 diffs Diff Formats |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
183 environment Environment Variables |
16547
23072be2eaa3
help: consistently use title capitalization for help topics
Martin Geisler <mg@aragost.com>
parents:
15996
diff
changeset
|
184 extensions Using Additional Features |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
185 filesets Specifying File Sets |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
186 glossary Glossary |
16547
23072be2eaa3
help: consistently use title capitalization for help topics
Martin Geisler <mg@aragost.com>
parents:
15996
diff
changeset
|
187 hgignore Syntax for Mercurial Ignore Files |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
188 hgweb Configuring hgweb |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
189 merge-tools Merge Tools |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
190 multirevs Specifying Multiple Revisions |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
191 patterns File Name Patterns |
15996 | 192 phases Working with Phases |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
193 revisions Specifying Single Revisions |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
194 revsets Specifying Revision Sets |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
195 subrepos Subrepositories |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
196 templating Template Usage |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
197 urls URL Paths |
10121
ac212bcc852b
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
10110
diff
changeset
|
198 |
20581
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
199 Test extension help: |
20622
352abbb0be88
extensions: remove the inotify extension (BC)
Matt Mackall <mpm@selenic.com>
parents:
20618
diff
changeset
|
200 $ hg help extensions --config extensions.rebase= --config extensions.children= |
20581
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
201 Using Additional Features |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
202 """"""""""""""""""""""""" |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
203 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
204 Mercurial has the ability to add new features through the use of |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
205 extensions. Extensions may add new commands, add options to existing |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
206 commands, change the default behavior of commands, or implement hooks. |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
207 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
208 To enable the "foo" extension, either shipped with Mercurial or in the |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
209 Python search path, create an entry for it in your configuration file, |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
210 like this: |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
211 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
212 [extensions] |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
213 foo = |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
214 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
215 You may also specify the full path to an extension: |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
216 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
217 [extensions] |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
218 myfeature = ~/.hgext/myfeature.py |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
219 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
220 See "hg help config" for more information on configuration files. |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
221 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
222 Extensions are not loaded by default for a variety of reasons: they can |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
223 increase startup overhead; they may be meant for advanced usage only; they |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
224 may provide potentially dangerous abilities (such as letting you destroy |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
225 or modify history); they might not be ready for prime time; or they may |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
226 alter some usual behaviors of stock Mercurial. It is thus up to the user |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
227 to activate extensions as needed. |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
228 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
229 To explicitly disable an extension enabled in a configuration file of |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
230 broader scope, prepend its path with !: |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
231 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
232 [extensions] |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
233 # disabling extension bar residing in /path/to/extension/bar.py |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
234 bar = !/path/to/extension/bar.py |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
235 # ditto, but no path was supplied for extension baz |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
236 baz = ! |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
237 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
238 enabled extensions: |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
239 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
240 children command to display child changesets (DEPRECATED) |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
241 rebase command to move sets of revisions to a different ancestor |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
242 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
243 disabled extensions: |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
244 |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
245 acl hooks for controlling repository access |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
246 blackbox log repository events to a blackbox for debugging |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
247 bugzilla hooks for integrating with the Bugzilla bug tracker |
24347
1bcfecbbf569
censor: add censor command to hgext with basic client-side tests
Mike Edgar <adgar@google.com>
parents:
24191
diff
changeset
|
248 censor erase file content at a given revision |
20581
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
249 churn command to display statistics about repository history |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
250 color colorize output from some commands |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
251 convert import revisions from foreign VCS repositories into |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
252 Mercurial |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
253 eol automatically manage newlines in repository files |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
254 extdiff command to allow external programs to compare revisions |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
255 factotum http authentication with factotum |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
256 gpg commands to sign and verify changesets |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
257 hgcia hooks for integrating with the CIA.vc notification service |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
258 hgk browse the repository in a graphical way |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
259 highlight syntax highlighting for hgweb (requires Pygments) |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
260 histedit interactive history editing |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
261 keyword expand keywords in tracked files |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
262 largefiles track large binary files |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
263 mq manage a stack of patches |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
264 notify hooks for sending email push notifications |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
265 pager browse command output with an external pager |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
266 patchbomb command to send changesets as (a series of) patch emails |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
267 purge command to delete untracked files from the working |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
268 directory |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
269 record commands to interactively select changes for |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
270 commit/qrefresh |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
271 relink recreates hardlinks between repository clones |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
272 schemes extend schemes with shortcuts to repository swarms |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
273 share share a common history between several working directories |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
274 shelve save and restore changes to the working directory |
23139
e53f6b72a0e4
spelling: fixes from proofreading of spell checker issues
Mads Kiilerich <madski@unity3d.com>
parents:
23122
diff
changeset
|
275 strip strip changesets and their descendants from history |
20581
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
276 transplant command to transplant changesets from another branch |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
277 win32mbcs allow the use of MBCS paths with problematic encodings |
7a72c28fdc76
test-help.t: add test for 'hg help extensions'
Augie Fackler <raf@durin42.com>
parents:
20570
diff
changeset
|
278 zeroconf discover and advertise repositories on the local network |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
279 Test short command list with verbose option |
10139
d09bed527343
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
10121
diff
changeset
|
280 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
281 $ hg -v help shortlist |
15020 | 282 Mercurial Distributed SCM |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
283 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
284 basic commands: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
285 |
16853
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
286 add add the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
287 annotate, blame |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
288 show changeset information by line for each file |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
289 clone make a copy of an existing repository |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
290 commit, ci commit the specified files or all outstanding changes |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
291 diff diff repository (or selected files) |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
292 export dump the header and diffs for one or more changesets |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
293 forget forget the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
294 init create a new repository in the given directory |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
295 log, history show revision history of entire repository or files |
23400
3bd577a3283e
merge: be precise about what merged into what in short desc
anatoly techtonik <techtonik@gmail.com>
parents:
23122
diff
changeset
|
296 merge merge another revision into working directory |
16853
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
297 pull pull changes from the specified source |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
298 push push changes to the specified destination |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
299 remove, rm remove the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
300 serve start stand-alone webserver |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
301 status, st show changed files in the working directory |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
302 summary, sum summarize working directory state |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
303 update, up, checkout, co |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
304 update working directory (or switch revisions) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
305 |
22117
c1d93edcf004
help: fold repeatable option message into option table header
Matt Mackall <mpm@selenic.com>
parents:
22116
diff
changeset
|
306 global options ([+] can be repeated): |
15145
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
307 |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
308 -R --repository REPO repository root directory or name of overlay bundle |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
309 file |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
310 --cwd DIR change working directory |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
311 -y --noninteractive do not prompt, automatically pick the first choice for |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
312 all prompts |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
313 -q --quiet suppress output |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
314 -v --verbose enable additional output |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
315 --config CONFIG [+] set/override config option (use 'section.name=value') |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
316 --debug enable debugging output |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
317 --debugger start debugger |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
318 --encoding ENCODE set the charset encoding (default: ascii) |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
319 --encodingmode MODE set the charset encoding mode (default: strict) |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
320 --traceback always print a traceback on exception |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
321 --time time how long the command takes |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
322 --profile print command execution profile |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
323 --version output version information and exit |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
324 -h --help display help and exit |
18267
5bb610f87d1d
clfilter: enforce hidden changeset globally
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
17981
diff
changeset
|
325 --hidden consider hidden changesets |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
326 |
22118
9a299c39de01
help: normalize helplist hints
Matt Mackall <mpm@selenic.com>
parents:
22117
diff
changeset
|
327 (use "hg help" for the full list of commands) |
10140
5d868e0565f6
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
10139
diff
changeset
|
328 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
329 $ hg add -h |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
330 hg add [OPTION]... [FILE]... |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
331 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
332 add the specified files on the next commit |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
333 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
334 Schedule files to be version controlled and added to the repository. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
335 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
336 The files will be added to the repository at the next commit. To undo an |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
337 add before that, see "hg forget". |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
338 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
339 If no names are given, add all files to the repository. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
340 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
341 Returns 0 if all files are successfully added. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
342 |
22117
c1d93edcf004
help: fold repeatable option message into option table header
Matt Mackall <mpm@selenic.com>
parents:
22116
diff
changeset
|
343 options ([+] can be repeated): |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
344 |
15145
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
345 -I --include PATTERN [+] include names matching the given patterns |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
346 -X --exclude PATTERN [+] exclude names matching the given patterns |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
347 -S --subrepos recurse into subrepositories |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
348 -n --dry-run do not perform actions, just print output |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
349 |
22110
26f7c8033bed
help: tweak --verbose command help hint
Matt Mackall <mpm@selenic.com>
parents:
21961
diff
changeset
|
350 (some details hidden, use --verbose to show complete help) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
351 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
352 Verbose help for add |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
353 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
354 $ hg add -hv |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
355 hg add [OPTION]... [FILE]... |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
356 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
357 add the specified files on the next commit |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
358 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
359 Schedule files to be version controlled and added to the repository. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
360 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
361 The files will be added to the repository at the next commit. To undo an |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
362 add before that, see "hg forget". |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
363 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
364 If no names are given, add all files to the repository. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
365 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
366 An example showing how new (unknown) files are added automatically by "hg |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
367 add": |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
368 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
369 $ ls |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
370 foo.c |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
371 $ hg status |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
372 ? foo.c |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
373 $ hg add |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
374 adding foo.c |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
375 $ hg status |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
376 A foo.c |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
377 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
378 Returns 0 if all files are successfully added. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
379 |
22117
c1d93edcf004
help: fold repeatable option message into option table header
Matt Mackall <mpm@selenic.com>
parents:
22116
diff
changeset
|
380 options ([+] can be repeated): |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
381 |
15145
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
382 -I --include PATTERN [+] include names matching the given patterns |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
383 -X --exclude PATTERN [+] exclude names matching the given patterns |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
384 -S --subrepos recurse into subrepositories |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
385 -n --dry-run do not perform actions, just print output |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
386 |
22117
c1d93edcf004
help: fold repeatable option message into option table header
Matt Mackall <mpm@selenic.com>
parents:
22116
diff
changeset
|
387 global options ([+] can be repeated): |
15145
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
388 |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
389 -R --repository REPO repository root directory or name of overlay bundle |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
390 file |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
391 --cwd DIR change working directory |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
392 -y --noninteractive do not prompt, automatically pick the first choice for |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
393 all prompts |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
394 -q --quiet suppress output |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
395 -v --verbose enable additional output |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
396 --config CONFIG [+] set/override config option (use 'section.name=value') |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
397 --debug enable debugging output |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
398 --debugger start debugger |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
399 --encoding ENCODE set the charset encoding (default: ascii) |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
400 --encodingmode MODE set the charset encoding mode (default: strict) |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
401 --traceback always print a traceback on exception |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
402 --time time how long the command takes |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
403 --profile print command execution profile |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
404 --version output version information and exit |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
405 -h --help display help and exit |
18267
5bb610f87d1d
clfilter: enforce hidden changeset globally
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
17981
diff
changeset
|
406 --hidden consider hidden changesets |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
407 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
408 Test help option with version option |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
409 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
410 $ hg add -h --version |
12376
97ffc68f71d3
tests: add glob matching for unified tests
Brodie Rao <brodie@bitheap.org>
parents:
12375
diff
changeset
|
411 Mercurial Distributed SCM (version *) (glob) |
12829
01145ee78c53
version: replace email address with url to reduce private mail
Matt Mackall <mpm@selenic.com>
parents:
12828
diff
changeset
|
412 (see http://mercurial.selenic.com for more information) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
413 |
24191 | 414 Copyright (C) 2005-2015 Matt Mackall and others |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
415 This is free software; see the source for copying conditions. There is NO |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
416 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
331 | 417 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
418 $ hg add --skjdfks |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
419 hg add: option --skjdfks not recognized |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
420 hg add [OPTION]... [FILE]... |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
421 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
422 add the specified files on the next commit |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
423 |
22117
c1d93edcf004
help: fold repeatable option message into option table header
Matt Mackall <mpm@selenic.com>
parents:
22116
diff
changeset
|
424 options ([+] can be repeated): |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
425 |
15145
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
426 -I --include PATTERN [+] include names matching the given patterns |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
427 -X --exclude PATTERN [+] exclude names matching the given patterns |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
428 -S --subrepos recurse into subrepositories |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
429 -n --dry-run do not perform actions, just print output |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
430 |
22111
aa5e256839d5
help: improve command summary hint
Matt Mackall <mpm@selenic.com>
parents:
22110
diff
changeset
|
431 (use "hg add -h" to show more help) |
12316
4134686b83e1
tests: add exit codes to unified tests
Matt Mackall <mpm@selenic.com>
parents:
12270
diff
changeset
|
432 [255] |
10141
827b7d6f9016
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
10140
diff
changeset
|
433 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
434 Test ambiguous command help |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
435 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
436 $ hg help ad |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
437 list of commands: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
438 |
16853
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
439 add add the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
440 addremove add all new files, delete all missing files |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
441 |
22118
9a299c39de01
help: normalize helplist hints
Matt Mackall <mpm@selenic.com>
parents:
22117
diff
changeset
|
442 (use "hg help -v ad" to show built-in aliases and global options) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
443 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
444 Test command without options |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
445 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
446 $ hg help verify |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
447 hg verify |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
448 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
449 verify the integrity of the repository |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
450 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
451 Verify the integrity of the current repository. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
452 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
453 This will perform an extensive check of the repository's integrity, |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
454 validating the hashes and checksums of each entry in the changelog, |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
455 manifest, and tracked files, as well as the integrity of their crosslinks |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
456 and indices. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
457 |
17717
009db477c9fb
help: add information about recovery from corruption to help of "verify"
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17648
diff
changeset
|
458 Please see http://mercurial.selenic.com/wiki/RepositoryCorruption for more |
009db477c9fb
help: add information about recovery from corruption to help of "verify"
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17648
diff
changeset
|
459 information about recovery from corruption of the repository. |
009db477c9fb
help: add information about recovery from corruption to help of "verify"
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17648
diff
changeset
|
460 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
461 Returns 0 on success, 1 if errors are encountered. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
462 |
22110
26f7c8033bed
help: tweak --verbose command help hint
Matt Mackall <mpm@selenic.com>
parents:
21961
diff
changeset
|
463 (some details hidden, use --verbose to show complete help) |
10141
827b7d6f9016
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
10140
diff
changeset
|
464 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
465 $ hg help diff |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
466 hg diff [OPTION]... ([-c REV] | [-r REV1 [-r REV2]]) [FILE]... |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
467 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
468 diff repository (or selected files) |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
469 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
470 Show differences between revisions for the specified files. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
471 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
472 Differences between files are shown using the unified diff format. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
473 |
12389 | 474 Note: |
475 diff may generate unexpected results for merges, as it will default to | |
476 comparing against the working directory's first parent changeset if no | |
477 revisions are specified. | |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
478 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
479 When two revision arguments are given, then changes are shown between |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
480 those revisions. If only one revision is specified then that revision is |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
481 compared to the working directory, and, when no revisions are specified, |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
482 the working directory files are compared to its parent. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
483 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
484 Alternatively you can specify -c/--change with a revision to see the |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
485 changes in that changeset relative to its first parent. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
486 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
487 Without the -a/--text option, diff will avoid generating diffs of files it |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
488 detects as binary. With -a, diff will generate a diff anyway, probably |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
489 with undesirable results. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
490 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
491 Use the -g/--git option to generate diffs in the git extended diff format. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
492 For more information, read "hg help diffs". |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
493 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
494 Returns 0 on success. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
495 |
22117
c1d93edcf004
help: fold repeatable option message into option table header
Matt Mackall <mpm@selenic.com>
parents:
22116
diff
changeset
|
496 options ([+] can be repeated): |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
497 |
15145
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
498 -r --rev REV [+] revision |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
499 -c --change REV change made by revision |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
500 -a --text treat all files as text |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
501 -g --git use git extended diff format |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
502 --nodates omit dates from diff headers |
23298
dc4d0c7b7d94
diff: add a --noprefix option
Siddharth Agarwal <sid0@fb.com>
parents:
23139
diff
changeset
|
503 --noprefix omit a/ and b/ prefixes from filenames |
15145
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
504 -p --show-function show which function each change is in |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
505 --reverse produce a diff that undoes the changes |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
506 -w --ignore-all-space ignore white space when comparing lines |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
507 -b --ignore-space-change ignore changes in the amount of white space |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
508 -B --ignore-blank-lines ignore changes whose lines are all blank |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
509 -U --unified NUM number of lines of context to show |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
510 --stat output diffstat-style summary of changes |
24455
16961d43dc89
diff: rename --relative option to --root
Sean Farley <sean@farley.io>
parents:
24432
diff
changeset
|
511 --root DIR produce diffs relative to subdirectory |
15145
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
512 -I --include PATTERN [+] include names matching the given patterns |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
513 -X --exclude PATTERN [+] exclude names matching the given patterns |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
514 -S --subrepos recurse into subrepositories |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
515 |
22110
26f7c8033bed
help: tweak --verbose command help hint
Matt Mackall <mpm@selenic.com>
parents:
21961
diff
changeset
|
516 (some details hidden, use --verbose to show complete help) |
10141
827b7d6f9016
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
10140
diff
changeset
|
517 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
518 $ hg help status |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
519 hg status [OPTION]... [FILE]... |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
520 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
521 aliases: st |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
522 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
523 show changed files in the working directory |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
524 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
525 Show status of files in the repository. If names are given, only files |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
526 that match are shown. Files that are clean or ignored or the source of a |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
527 copy/move operation, are not listed unless -c/--clean, -i/--ignored, |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
528 -C/--copies or -A/--all are given. Unless options described with "show |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
529 only ..." are given, the options -mardu are used. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
530 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
531 Option -q/--quiet hides untracked (unknown and ignored) files unless |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
532 explicitly requested with -u/--unknown or -i/--ignored. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
533 |
12390
aff4afdcfd2b
Use more note admonitions in help texts
Christian Ebert <blacktrash@gmx.net>
parents:
12389
diff
changeset
|
534 Note: |
aff4afdcfd2b
Use more note admonitions in help texts
Christian Ebert <blacktrash@gmx.net>
parents:
12389
diff
changeset
|
535 status may appear to disagree with diff if permissions have changed or |
aff4afdcfd2b
Use more note admonitions in help texts
Christian Ebert <blacktrash@gmx.net>
parents:
12389
diff
changeset
|
536 a merge has occurred. The standard diff format does not report |
aff4afdcfd2b
Use more note admonitions in help texts
Christian Ebert <blacktrash@gmx.net>
parents:
12389
diff
changeset
|
537 permission changes and diff only reports changes relative to one merge |
aff4afdcfd2b
Use more note admonitions in help texts
Christian Ebert <blacktrash@gmx.net>
parents:
12389
diff
changeset
|
538 parent. |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
539 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
540 If one revision is given, it is used as the base revision. If two |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
541 revisions are given, the differences between them are shown. The --change |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
542 option can also be used as a shortcut to list the changed files of a |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
543 revision from its first parent. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
544 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
545 The codes used to show the status of files are: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
546 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
547 M = modified |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
548 A = added |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
549 R = removed |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
550 C = clean |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
551 ! = missing (deleted by non-hg command, but still tracked) |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
552 ? = not tracked |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
553 I = ignored |
20660
19e9478c1a22
status: improve explanation of ' ' status
Matt Mackall <mpm@selenic.com>
parents:
20654
diff
changeset
|
554 = origin of the previous file (with --copies) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
555 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
556 Returns 0 on success. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
557 |
22117
c1d93edcf004
help: fold repeatable option message into option table header
Matt Mackall <mpm@selenic.com>
parents:
22116
diff
changeset
|
558 options ([+] can be repeated): |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
559 |
15145
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
560 -A --all show status of all files |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
561 -m --modified show only modified files |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
562 -a --added show only added files |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
563 -r --removed show only removed files |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
564 -d --deleted show only deleted (but tracked) files |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
565 -c --clean show only files without changes |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
566 -u --unknown show only unknown (not tracked) files |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
567 -i --ignored show only ignored files |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
568 -n --no-status hide status prefix |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
569 -C --copies show source of copied files |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
570 -0 --print0 end filenames with NUL, for use with xargs |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
571 --rev REV [+] show difference from revision |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
572 --change REV list the changed files of a revision |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
573 -I --include PATTERN [+] include names matching the given patterns |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
574 -X --exclude PATTERN [+] exclude names matching the given patterns |
ff26712a0c50
help: use RST to format option lists
Matt Mackall <mpm@selenic.com>
parents:
15120
diff
changeset
|
575 -S --subrepos recurse into subrepositories |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
576 |
22110
26f7c8033bed
help: tweak --verbose command help hint
Matt Mackall <mpm@selenic.com>
parents:
21961
diff
changeset
|
577 (some details hidden, use --verbose to show complete help) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
578 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
579 $ hg -q help status |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
580 hg status [OPTION]... [FILE]... |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
581 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
582 show changed files in the working directory |
10141
827b7d6f9016
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
10140
diff
changeset
|
583 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
584 $ hg help foo |
21289
c3784e3c3e8d
help: suggest keyword search when no topic is found
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21288
diff
changeset
|
585 abort: no such help topic: foo |
c3784e3c3e8d
help: suggest keyword search when no topic is found
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21288
diff
changeset
|
586 (try "hg help --keyword foo") |
12316
4134686b83e1
tests: add exit codes to unified tests
Matt Mackall <mpm@selenic.com>
parents:
12270
diff
changeset
|
587 [255] |
10141
827b7d6f9016
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
10140
diff
changeset
|
588 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
589 $ hg skjdfks |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
590 hg: unknown command 'skjdfks' |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
591 Mercurial Distributed SCM |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
592 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
593 basic commands: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
594 |
16853
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
595 add add the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
596 annotate show changeset information by line for each file |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
597 clone make a copy of an existing repository |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
598 commit commit the specified files or all outstanding changes |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
599 diff diff repository (or selected files) |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
600 export dump the header and diffs for one or more changesets |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
601 forget forget the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
602 init create a new repository in the given directory |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
603 log show revision history of entire repository or files |
23400
3bd577a3283e
merge: be precise about what merged into what in short desc
anatoly techtonik <techtonik@gmail.com>
parents:
23122
diff
changeset
|
604 merge merge another revision into working directory |
16853
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
605 pull pull changes from the specified source |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
606 push push changes to the specified destination |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
607 remove remove the specified files on the next commit |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
608 serve start stand-alone webserver |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
609 status show changed files in the working directory |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
610 summary summarize working directory state |
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
611 update update working directory (or switch revisions) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
612 |
22118
9a299c39de01
help: normalize helplist hints
Matt Mackall <mpm@selenic.com>
parents:
22117
diff
changeset
|
613 (use "hg help" for the full list of commands or "hg -v" for details) |
12316
4134686b83e1
tests: add exit codes to unified tests
Matt Mackall <mpm@selenic.com>
parents:
12270
diff
changeset
|
614 [255] |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
615 |
20743
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
616 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
617 $ cat > helpext.py <<EOF |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
618 > import os |
21254
51e5c793a9f4
tests: declare commands using decorator
Gregory Szorc <gregory.szorc@gmail.com>
parents:
21039
diff
changeset
|
619 > from mercurial import cmdutil, commands |
51e5c793a9f4
tests: declare commands using decorator
Gregory Szorc <gregory.szorc@gmail.com>
parents:
21039
diff
changeset
|
620 > |
51e5c793a9f4
tests: declare commands using decorator
Gregory Szorc <gregory.szorc@gmail.com>
parents:
21039
diff
changeset
|
621 > cmdtable = {} |
51e5c793a9f4
tests: declare commands using decorator
Gregory Szorc <gregory.szorc@gmail.com>
parents:
21039
diff
changeset
|
622 > command = cmdutil.command(cmdtable) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
623 > |
21254
51e5c793a9f4
tests: declare commands using decorator
Gregory Szorc <gregory.szorc@gmail.com>
parents:
21039
diff
changeset
|
624 > @command('nohelp', |
51e5c793a9f4
tests: declare commands using decorator
Gregory Szorc <gregory.szorc@gmail.com>
parents:
21039
diff
changeset
|
625 > [('', 'longdesc', 3, 'x'*90), |
51e5c793a9f4
tests: declare commands using decorator
Gregory Szorc <gregory.szorc@gmail.com>
parents:
21039
diff
changeset
|
626 > ('n', '', None, 'normal desc'), |
51e5c793a9f4
tests: declare commands using decorator
Gregory Szorc <gregory.szorc@gmail.com>
parents:
21039
diff
changeset
|
627 > ('', 'newline', '', 'line1\nline2')], |
21773
26d2fb899637
tests: define norepo in command decorator
Gregory Szorc <gregory.szorc@gmail.com>
parents:
21762
diff
changeset
|
628 > 'hg nohelp', |
26d2fb899637
tests: define norepo in command decorator
Gregory Szorc <gregory.szorc@gmail.com>
parents:
21762
diff
changeset
|
629 > norepo=True) |
21254
51e5c793a9f4
tests: declare commands using decorator
Gregory Szorc <gregory.szorc@gmail.com>
parents:
21039
diff
changeset
|
630 > @command('debugoptDEP', [('', 'dopt', None, 'option is DEPRECATED')]) |
24871
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
631 > @command('debugoptEXP', [('', 'eopt', None, 'option is EXPERIMENTAL')]) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
632 > def nohelp(ui, *args, **kwargs): |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
633 > pass |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
634 > |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
635 > EOF |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
636 $ echo '[extensions]' >> $HGRCPATH |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
637 $ echo "helpext = `pwd`/helpext.py" >> $HGRCPATH |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
638 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
639 Test command with no help text |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
640 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
641 $ hg help nohelp |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
642 hg nohelp |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
643 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
644 (no help text available) |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
645 |
20654
af9d9b778550
minirst: create valid output when table data contains a newline
Simon Heimberg <simohe@besonet.ch>
parents:
20624
diff
changeset
|
646 options: |
af9d9b778550
minirst: create valid output when table data contains a newline
Simon Heimberg <simohe@besonet.ch>
parents:
20624
diff
changeset
|
647 |
af9d9b778550
minirst: create valid output when table data contains a newline
Simon Heimberg <simohe@besonet.ch>
parents:
20624
diff
changeset
|
648 --longdesc VALUE xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx |
af9d9b778550
minirst: create valid output when table data contains a newline
Simon Heimberg <simohe@besonet.ch>
parents:
20624
diff
changeset
|
649 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx (default: 3) |
af9d9b778550
minirst: create valid output when table data contains a newline
Simon Heimberg <simohe@besonet.ch>
parents:
20624
diff
changeset
|
650 -n -- normal desc |
af9d9b778550
minirst: create valid output when table data contains a newline
Simon Heimberg <simohe@besonet.ch>
parents:
20624
diff
changeset
|
651 --newline VALUE line1 line2 |
af9d9b778550
minirst: create valid output when table data contains a newline
Simon Heimberg <simohe@besonet.ch>
parents:
20624
diff
changeset
|
652 |
22110
26f7c8033bed
help: tweak --verbose command help hint
Matt Mackall <mpm@selenic.com>
parents:
21961
diff
changeset
|
653 (some details hidden, use --verbose to show complete help) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
654 |
16884
4fd1f1d7569b
help: fix 'hg help -k' matching an extension without docs
Thomas Arendsen Hein <thomas@intevation.de>
parents:
16853
diff
changeset
|
655 $ hg help -k nohelp |
4fd1f1d7569b
help: fix 'hg help -k' matching an extension without docs
Thomas Arendsen Hein <thomas@intevation.de>
parents:
16853
diff
changeset
|
656 Commands: |
4fd1f1d7569b
help: fix 'hg help -k' matching an extension without docs
Thomas Arendsen Hein <thomas@intevation.de>
parents:
16853
diff
changeset
|
657 |
4fd1f1d7569b
help: fix 'hg help -k' matching an extension without docs
Thomas Arendsen Hein <thomas@intevation.de>
parents:
16853
diff
changeset
|
658 nohelp hg nohelp |
4fd1f1d7569b
help: fix 'hg help -k' matching an extension without docs
Thomas Arendsen Hein <thomas@intevation.de>
parents:
16853
diff
changeset
|
659 |
4fd1f1d7569b
help: fix 'hg help -k' matching an extension without docs
Thomas Arendsen Hein <thomas@intevation.de>
parents:
16853
diff
changeset
|
660 Extension Commands: |
4fd1f1d7569b
help: fix 'hg help -k' matching an extension without docs
Thomas Arendsen Hein <thomas@intevation.de>
parents:
16853
diff
changeset
|
661 |
4fd1f1d7569b
help: fix 'hg help -k' matching an extension without docs
Thomas Arendsen Hein <thomas@intevation.de>
parents:
16853
diff
changeset
|
662 nohelp (no help text available) |
4fd1f1d7569b
help: fix 'hg help -k' matching an extension without docs
Thomas Arendsen Hein <thomas@intevation.de>
parents:
16853
diff
changeset
|
663 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
664 Test that default list of commands omits extension commands |
10141
827b7d6f9016
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
10140
diff
changeset
|
665 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
666 $ hg help |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
667 Mercurial Distributed SCM |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
668 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
669 list of commands: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
670 |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
671 add add the specified files on the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
672 addremove add all new files, delete all missing files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
673 annotate show changeset information by line for each file |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
674 archive create an unversioned archive of a repository revision |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
675 backout reverse effect of earlier changeset |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
676 bisect subdivision search of changesets |
21762
0c6cdbb697d9
bookmarks: improve the bookmark help (issue4244)
Matt Mackall <mpm@selenic.com>
parents:
21289
diff
changeset
|
677 bookmarks create a new bookmark or list existing bookmarks |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
678 branch set or show the current branch name |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
679 branches list repository named branches |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
680 bundle create a changegroup file |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
681 cat output the current or given revision of files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
682 clone make a copy of an existing repository |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
683 commit commit the specified files or all outstanding changes |
20570
c21e1e3ab915
config: move showconfig code and add config as primary alias
Matt Mackall <mpm@selenic.com>
parents:
20245
diff
changeset
|
684 config show combined config settings from all hgrc files |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
685 copy mark files as copied for the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
686 diff diff repository (or selected files) |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
687 export dump the header and diffs for one or more changesets |
22423
edf07a804ac4
files: add new command unifying locate and manifest functionality
Matt Mackall <mpm@selenic.com>
parents:
22118
diff
changeset
|
688 files list tracked files |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
689 forget forget the specified files on the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
690 graft copy changes from other branches onto the current branch |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
691 grep search for a pattern in specified files and revisions |
19469
bf6bc4681383
heads: modernize documentation (issue3992)
Matt Mackall <mpm@selenic.com>
parents:
19434
diff
changeset
|
692 heads show branch heads |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
693 help show help for a given topic or a help overview |
24364
135b23868f45
commands: replace "working copy" with "working directory" in help/messages
Yuya Nishihara <yuya@tcha.org>
parents:
24347
diff
changeset
|
694 identify identify the working directory or specified revision |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
695 import import an ordered set of patches |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
696 incoming show new changesets found in source |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
697 init create a new repository in the given directory |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
698 log show revision history of entire repository or files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
699 manifest output the current or given revision of the project manifest |
23400
3bd577a3283e
merge: be precise about what merged into what in short desc
anatoly techtonik <techtonik@gmail.com>
parents:
23122
diff
changeset
|
700 merge merge another revision into working directory |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
701 outgoing show changesets not found in the destination |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
702 paths show aliases for remote repositories |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
703 phase set or show the current phase name |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
704 pull pull changes from the specified source |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
705 push push changes to the specified destination |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
706 recover roll back an interrupted transaction |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
707 remove remove the specified files on the next commit |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
708 rename rename files; equivalent of copy + remove |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
709 resolve redo merges or set/view the merge status of files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
710 revert restore files to their checkout state |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
711 root print the root (top) of the current working directory |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
712 serve start stand-alone webserver |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
713 status show changed files in the working directory |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
714 summary summarize working directory state |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
715 tag add one or more tags for the current or given revision |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
716 tags list repository tags |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
717 unbundle apply one or more changegroup files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
718 update update working directory (or switch revisions) |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
719 verify verify the integrity of the repository |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
720 version output version and copyright information |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
721 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
722 enabled extensions: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
723 |
15861
ee8f5e4ce7b8
minirst: simplify and standardize field list formatting
Olav Reinert <seroton10@gmail.com>
parents:
15834
diff
changeset
|
724 helpext (no help text available) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
725 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
726 additional help topics: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
727 |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
728 config Configuration Files |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
729 dates Date Formats |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
730 diffs Diff Formats |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
731 environment Environment Variables |
16547
23072be2eaa3
help: consistently use title capitalization for help topics
Martin Geisler <mg@aragost.com>
parents:
15996
diff
changeset
|
732 extensions Using Additional Features |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
733 filesets Specifying File Sets |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
734 glossary Glossary |
16547
23072be2eaa3
help: consistently use title capitalization for help topics
Martin Geisler <mg@aragost.com>
parents:
15996
diff
changeset
|
735 hgignore Syntax for Mercurial Ignore Files |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
736 hgweb Configuring hgweb |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
737 merge-tools Merge Tools |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
738 multirevs Specifying Multiple Revisions |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
739 patterns File Name Patterns |
15996 | 740 phases Working with Phases |
15862
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
741 revisions Specifying Single Revisions |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
742 revsets Specifying Revision Sets |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
743 subrepos Subrepositories |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
744 templating Template Usage |
d0f2a89c8cfa
help: fix column alignment in "hg help" output
Olav Reinert <seroton10@gmail.com>
parents:
15861
diff
changeset
|
745 urls URL Paths |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
746 |
22118
9a299c39de01
help: normalize helplist hints
Matt Mackall <mpm@selenic.com>
parents:
22117
diff
changeset
|
747 (use "hg help -v" to show built-in aliases and global options) |
10142
44fa0e205ec9
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
10141
diff
changeset
|
748 |
13888
9e5407a67dea
help: sort help topics to make the output more readable (issue2751)
Yun Lee <yunlee.bj@gmail.com>
parents:
13584
diff
changeset
|
749 |
20822
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
750 Test list of internal help commands |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
751 |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
752 $ hg help debug |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
753 debug commands (internal and unsupported): |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
754 |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
755 debugancestor |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
756 find the ancestor revision of two revisions in a given index |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
757 debugbuilddag |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
758 builds a repo with a given DAG from scratch in the current |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
759 empty repo |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
760 debugbundle lists the contents of a bundle |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
761 debugcheckstate |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
762 validate the correctness of the current dirstate |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
763 debugcommands |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
764 list all available commands and options |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
765 debugcomplete |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
766 returns the completion list associated with the given command |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
767 debugdag format the changelog or an index DAG as a concise textual |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
768 description |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
769 debugdata dump the contents of a data file revision |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
770 debugdate parse and display a date |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
771 debugdirstate |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
772 show the contents of the current dirstate |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
773 debugdiscovery |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
774 runs the changeset discovery protocol in isolation |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
775 debugfileset parse and apply a fileset specification |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
776 debugfsinfo show information detected about current filesystem |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
777 debuggetbundle |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
778 retrieves a bundle from a repo |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
779 debugignore display the combined ignore pattern |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
780 debugindex dump the contents of an index file |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
781 debugindexdot |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
782 dump an index DAG as a graphviz dot file |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
783 debuginstall test Mercurial installation |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
784 debugknown test whether node ids are known to a repo |
22559
4e0b696a1cb3
commands: add debuglocks to report/clear lock state
Matt Mackall <mpm@selenic.com>
parents:
22501
diff
changeset
|
785 debuglocks show or modify state of locks |
23762
0390cc327dd5
debugnamecomplete: rename from debuglabelcomplete
Sean Farley <sean.michael.farley@gmail.com>
parents:
23612
diff
changeset
|
786 debugnamecomplete |
0390cc327dd5
debugnamecomplete: rename from debuglabelcomplete
Sean Farley <sean.michael.farley@gmail.com>
parents:
23612
diff
changeset
|
787 complete "names" - tags, open branch names, bookmark names |
20822
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
788 debugobsolete |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
789 create arbitrary obsolete marker |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
790 debugoptDEP (no help text available) |
24871
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
791 debugoptEXP (no help text available) |
20822
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
792 debugpathcomplete |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
793 complete part or all of a tracked path |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
794 debugpushkey access the pushkey key/value protocol |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
795 debugpvec (no help text available) |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
796 debugrebuilddirstate |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
797 rebuild the dirstate as it would look like for the given |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
798 revision |
25652
2882d6886919
repair: add functionality to rebuild fncache
Gregory Szorc <gregory.szorc@gmail.com>
parents:
25522
diff
changeset
|
799 debugrebuildfncache |
2882d6886919
repair: add functionality to rebuild fncache
Gregory Szorc <gregory.szorc@gmail.com>
parents:
25522
diff
changeset
|
800 rebuild the fncache file |
20822
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
801 debugrename dump rename information |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
802 debugrevlog show data and statistics about a revlog |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
803 debugrevspec parse and apply a revision specification |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
804 debugsetparents |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
805 manually set the parents of the current working directory |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
806 debugsub (no help text available) |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
807 debugsuccessorssets |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
808 show set of successors for revision |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
809 debugwalk show how files match on given patterns |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
810 debugwireargs |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
811 (no help text available) |
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
812 |
22118
9a299c39de01
help: normalize helplist hints
Matt Mackall <mpm@selenic.com>
parents:
22117
diff
changeset
|
813 (use "hg help -v debug" to show built-in aliases and global options) |
20822
be87397f98c9
help: let 'hg help debug' show the list of secret debug commands
Mads Kiilerich <madski@unity3d.com>
parents:
20743
diff
changeset
|
814 |
13888
9e5407a67dea
help: sort help topics to make the output more readable (issue2751)
Yun Lee <yunlee.bj@gmail.com>
parents:
13584
diff
changeset
|
815 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
816 Test list of commands with command with no help text |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
817 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
818 $ hg help helpext |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
819 helpext extension - no help text available |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
820 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
821 list of commands: |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
822 |
16853
7863ff383894
help: format command and option list help using RST
Olav Reinert <seroton10@gmail.com>
parents:
16740
diff
changeset
|
823 nohelp (no help text available) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
824 |
22118
9a299c39de01
help: normalize helplist hints
Matt Mackall <mpm@selenic.com>
parents:
22117
diff
changeset
|
825 (use "hg help -v helpext" to show built-in aliases and global options) |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
826 |
20743
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
827 |
24871
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
828 test deprecated and experimental options are hidden in command help |
20743
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
829 $ hg help debugoptDEP |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
830 hg debugoptDEP |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
831 |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
832 (no help text available) |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
833 |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
834 options: |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
835 |
22110
26f7c8033bed
help: tweak --verbose command help hint
Matt Mackall <mpm@selenic.com>
parents:
21961
diff
changeset
|
836 (some details hidden, use --verbose to show complete help) |
20743
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
837 |
24871
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
838 $ hg help debugoptEXP |
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
839 hg debugoptEXP |
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
840 |
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
841 (no help text available) |
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
842 |
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
843 options: |
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
844 |
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
845 (some details hidden, use --verbose to show complete help) |
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
846 |
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
847 test deprecated and experimental options is shown with -v |
20743
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
848 $ hg help -v debugoptDEP | grep dopt |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
849 --dopt option is DEPRECATED |
24871
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
850 $ hg help -v debugoptEXP | grep eopt |
117b9a101f71
help: also hide options marked EXPERIMENTAL
Siddharth Agarwal <sid0@fb.com>
parents:
24455
diff
changeset
|
851 --eopt option is EXPERIMENTAL |
20743
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
852 |
21039
d0cc92ba0406
tests: mark test in tests/test-help.t as contingent on gettext being available
Kent Frazier <kentfrazier@gmail.com>
parents:
20822
diff
changeset
|
853 #if gettext |
20743
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
854 test deprecated option is hidden with translation with untranslated description |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
855 (use many globy for not failing on changed transaction) |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
856 $ LANGUAGE=sv hg help debugoptDEP |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
857 hg debugoptDEP |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
858 |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
859 (*) (glob) |
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
860 |
22116
161085f87b95
help: roll option list header into option formatter
Matt Mackall <mpm@selenic.com>
parents:
22114
diff
changeset
|
861 options: |
20743
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
862 |
22110
26f7c8033bed
help: tweak --verbose command help hint
Matt Mackall <mpm@selenic.com>
parents:
21961
diff
changeset
|
863 (some details hidden, use --verbose to show complete help) |
21039
d0cc92ba0406
tests: mark test in tests/test-help.t as contingent on gettext being available
Kent Frazier <kentfrazier@gmail.com>
parents:
20822
diff
changeset
|
864 #endif |
20743
05267e6e94dd
help: filter out deprecated options with untranslated descriptions
Simon Heimberg <simohe@besonet.ch>
parents:
20660
diff
changeset
|
865 |
21961
af15de6775c7
help: always show command help with -h (issue4240)
Matt Mackall <mpm@selenic.com>
parents:
21773
diff
changeset
|
866 Test commands that collide with topics (issue4240) |
af15de6775c7
help: always show command help with -h (issue4240)
Matt Mackall <mpm@selenic.com>
parents:
21773
diff
changeset
|
867 |
af15de6775c7
help: always show command help with -h (issue4240)
Matt Mackall <mpm@selenic.com>
parents:
21773
diff
changeset
|
868 $ hg config -hq |
af15de6775c7
help: always show command help with -h (issue4240)
Matt Mackall <mpm@selenic.com>
parents:
21773
diff
changeset
|
869 hg config [-u] [NAME]... |
af15de6775c7
help: always show command help with -h (issue4240)
Matt Mackall <mpm@selenic.com>
parents:
21773
diff
changeset
|
870 |
af15de6775c7
help: always show command help with -h (issue4240)
Matt Mackall <mpm@selenic.com>
parents:
21773
diff
changeset
|
871 show combined config settings from all hgrc files |
af15de6775c7
help: always show command help with -h (issue4240)
Matt Mackall <mpm@selenic.com>
parents:
21773
diff
changeset
|
872 $ hg showconfig -hq |
af15de6775c7
help: always show command help with -h (issue4240)
Matt Mackall <mpm@selenic.com>
parents:
21773
diff
changeset
|
873 hg config [-u] [NAME]... |
af15de6775c7
help: always show command help with -h (issue4240)
Matt Mackall <mpm@selenic.com>
parents:
21773
diff
changeset
|
874 |
af15de6775c7
help: always show command help with -h (issue4240)
Matt Mackall <mpm@selenic.com>
parents:
21773
diff
changeset
|
875 show combined config settings from all hgrc files |
af15de6775c7
help: always show command help with -h (issue4240)
Matt Mackall <mpm@selenic.com>
parents:
21773
diff
changeset
|
876 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
877 Test a help topic |
10143
f6ac05b5684b
test-help: improve test coverage
Henri Wiechers <hwiechers@gmail.com>
parents:
10142
diff
changeset
|
878 |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
879 $ hg help revs |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
880 Specifying Single Revisions |
18748
6e676fb6ea44
help: use a full header for topic titles
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18747
diff
changeset
|
881 """"""""""""""""""""""""""" |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
882 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
883 Mercurial supports several ways to specify individual revisions. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
884 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
885 A plain integer is treated as a revision number. Negative integers are |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
886 treated as sequential offsets from the tip, with -1 denoting the tip, -2 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
887 denoting the revision prior to the tip, and so forth. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
888 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
889 A 40-digit hexadecimal string is treated as a unique revision identifier. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
890 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
891 A hexadecimal string less than 40 characters long is treated as a unique |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
892 revision identifier and is referred to as a short-form identifier. A |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
893 short-form identifier is only valid if it is the prefix of exactly one |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
894 full-length identifier. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
895 |
16740
43cfe56121d3
help: include bookmarks in 'help revisions' and simplify wording
Kevin Bullock <kbullock@ringworld.org>
parents:
16547
diff
changeset
|
896 Any other string is treated as a bookmark, tag, or branch name. A bookmark |
43cfe56121d3
help: include bookmarks in 'help revisions' and simplify wording
Kevin Bullock <kbullock@ringworld.org>
parents:
16547
diff
changeset
|
897 is a movable pointer to a revision. A tag is a permanent name associated |
20245
4edd179fefb8
help: branch names primarily denote the tipmost unclosed branch head
Mads Kiilerich <madski@unity3d.com>
parents:
20227
diff
changeset
|
898 with a revision. A branch name denotes the tipmost open branch head of |
4edd179fefb8
help: branch names primarily denote the tipmost unclosed branch head
Mads Kiilerich <madski@unity3d.com>
parents:
20227
diff
changeset
|
899 that branch - or if they are all closed, the tipmost closed head of the |
16740
43cfe56121d3
help: include bookmarks in 'help revisions' and simplify wording
Kevin Bullock <kbullock@ringworld.org>
parents:
16547
diff
changeset
|
900 branch. Bookmark, tag, and branch names must not contain the ":" |
43cfe56121d3
help: include bookmarks in 'help revisions' and simplify wording
Kevin Bullock <kbullock@ringworld.org>
parents:
16547
diff
changeset
|
901 character. |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
902 |
16740
43cfe56121d3
help: include bookmarks in 'help revisions' and simplify wording
Kevin Bullock <kbullock@ringworld.org>
parents:
16547
diff
changeset
|
903 The reserved name "tip" always identifies the most recent revision. |
12073
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
904 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
905 The reserved name "null" indicates the null revision. This is the revision |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
906 of an empty repository, and the parent of revision 0. |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
907 |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
908 The reserved name "." indicates the working directory parent. If no |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
909 working directory is checked out, it is equivalent to null. If an |
adfff89e6058
tests: unify test-help
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
10446
diff
changeset
|
910 uncommitted merge is in progress, "." is the revision of the first parent. |
12820
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
911 |
13584
02f507ce61f2
test-help: test a sample of 'templates' topic help
Patrick Mezard <pmezard@gmail.com>
parents:
13472
diff
changeset
|
912 Test templating help |
02f507ce61f2
test-help: test a sample of 'templates' topic help
Patrick Mezard <pmezard@gmail.com>
parents:
13472
diff
changeset
|
913 |
02f507ce61f2
test-help: test a sample of 'templates' topic help
Patrick Mezard <pmezard@gmail.com>
parents:
13472
diff
changeset
|
914 $ hg help templating | egrep '(desc|diffstat|firstline|nonempty) ' |
15861
ee8f5e4ce7b8
minirst: simplify and standardize field list formatting
Olav Reinert <seroton10@gmail.com>
parents:
15834
diff
changeset
|
915 desc String. The text of the changeset description. |
ee8f5e4ce7b8
minirst: simplify and standardize field list formatting
Olav Reinert <seroton10@gmail.com>
parents:
15834
diff
changeset
|
916 diffstat String. Statistics of changes with the following format: |
ee8f5e4ce7b8
minirst: simplify and standardize field list formatting
Olav Reinert <seroton10@gmail.com>
parents:
15834
diff
changeset
|
917 firstline Any text. Returns the first line of text. |
ee8f5e4ce7b8
minirst: simplify and standardize field list formatting
Olav Reinert <seroton10@gmail.com>
parents:
15834
diff
changeset
|
918 nonempty Any text. Returns '(none)' if the string is empty. |
13584
02f507ce61f2
test-help: test a sample of 'templates' topic help
Patrick Mezard <pmezard@gmail.com>
parents:
13472
diff
changeset
|
919 |
12820
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
920 Test help hooks |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
921 |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
922 $ cat > helphook1.py <<EOF |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
923 > from mercurial import help |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
924 > |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
925 > def rewrite(topic, doc): |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
926 > return doc + '\nhelphook1\n' |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
927 > |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
928 > def extsetup(ui): |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
929 > help.addtopichook('revsets', rewrite) |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
930 > EOF |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
931 $ cat > helphook2.py <<EOF |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
932 > from mercurial import help |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
933 > |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
934 > def rewrite(topic, doc): |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
935 > return doc + '\nhelphook2\n' |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
936 > |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
937 > def extsetup(ui): |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
938 > help.addtopichook('revsets', rewrite) |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
939 > EOF |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
940 $ echo '[extensions]' >> $HGRCPATH |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
941 $ echo "helphook1 = `pwd`/helphook1.py" >> $HGRCPATH |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
942 $ echo "helphook2 = `pwd`/helphook2.py" >> $HGRCPATH |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
943 $ hg help revsets | grep helphook |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
944 helphook1 |
0edc0aa7432d
help: add topic rewriting hooks
Patrick Mezard <pmezard@gmail.com>
parents:
12787
diff
changeset
|
945 helphook2 |
16942
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
946 |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
947 Test keyword search help |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
948 |
19769
83d79a00cc24
help: use full name of extensions to look up them for keyword search
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
19469
diff
changeset
|
949 $ cat > prefixedname.py <<EOF |
83d79a00cc24
help: use full name of extensions to look up them for keyword search
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
19469
diff
changeset
|
950 > '''matched against word "clone" |
83d79a00cc24
help: use full name of extensions to look up them for keyword search
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
19469
diff
changeset
|
951 > ''' |
83d79a00cc24
help: use full name of extensions to look up them for keyword search
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
19469
diff
changeset
|
952 > EOF |
83d79a00cc24
help: use full name of extensions to look up them for keyword search
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
19469
diff
changeset
|
953 $ echo '[extensions]' >> $HGRCPATH |
83d79a00cc24
help: use full name of extensions to look up them for keyword search
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
19469
diff
changeset
|
954 $ echo "dot.dot.prefixedname = `pwd`/prefixedname.py" >> $HGRCPATH |
16942
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
955 $ hg help -k clone |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
956 Topics: |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
957 |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
958 config Configuration Files |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
959 extensions Using Additional Features |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
960 glossary Glossary |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
961 phases Working with Phases |
17322
7124f984dc8d
help: use the first topic name from helptable, not the longest alias
Mads Kiilerich <mads@kiilerich.com>
parents:
16949
diff
changeset
|
962 subrepos Subrepositories |
16942
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
963 urls URL Paths |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
964 |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
965 Commands: |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
966 |
21762
0c6cdbb697d9
bookmarks: improve the bookmark help (issue4244)
Matt Mackall <mpm@selenic.com>
parents:
21289
diff
changeset
|
967 bookmarks create a new bookmark or list existing bookmarks |
18475
075143f60807
tests: fix test-help.t for '@' bookmark documentation
Kevin Bullock <kbullock@ringworld.org>
parents:
18267
diff
changeset
|
968 clone make a copy of an existing repository |
075143f60807
tests: fix test-help.t for '@' bookmark documentation
Kevin Bullock <kbullock@ringworld.org>
parents:
18267
diff
changeset
|
969 paths show aliases for remote repositories |
075143f60807
tests: fix test-help.t for '@' bookmark documentation
Kevin Bullock <kbullock@ringworld.org>
parents:
18267
diff
changeset
|
970 update update working directory (or switch revisions) |
16942
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
971 |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
972 Extensions: |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
973 |
19769
83d79a00cc24
help: use full name of extensions to look up them for keyword search
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
19469
diff
changeset
|
974 prefixedname matched against word "clone" |
83d79a00cc24
help: use full name of extensions to look up them for keyword search
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
19469
diff
changeset
|
975 relink recreates hardlinks between repository clones |
16942
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
976 |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
977 Extension Commands: |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
978 |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
979 qclone clone main and patch repository at same time |
87882c8753d4
help: fix extension commands help in keyword search
Olav Reinert <seroton10@gmail.com>
parents:
16884
diff
changeset
|
980 |
21289
c3784e3c3e8d
help: suggest keyword search when no topic is found
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21288
diff
changeset
|
981 Test unfound topic |
c3784e3c3e8d
help: suggest keyword search when no topic is found
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21288
diff
changeset
|
982 |
c3784e3c3e8d
help: suggest keyword search when no topic is found
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21288
diff
changeset
|
983 $ hg help nonexistingtopicthatwillneverexisteverever |
c3784e3c3e8d
help: suggest keyword search when no topic is found
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21288
diff
changeset
|
984 abort: no such help topic: nonexistingtopicthatwillneverexisteverever |
c3784e3c3e8d
help: suggest keyword search when no topic is found
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21288
diff
changeset
|
985 (try "hg help --keyword nonexistingtopicthatwillneverexisteverever") |
c3784e3c3e8d
help: suggest keyword search when no topic is found
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21288
diff
changeset
|
986 [255] |
c3784e3c3e8d
help: suggest keyword search when no topic is found
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21288
diff
changeset
|
987 |
21288
eb6eaef7ae44
help: provide a more helpful message when no keyword are matched
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21254
diff
changeset
|
988 Test unfound keyword |
eb6eaef7ae44
help: provide a more helpful message when no keyword are matched
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21254
diff
changeset
|
989 |
eb6eaef7ae44
help: provide a more helpful message when no keyword are matched
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21254
diff
changeset
|
990 $ hg help --keyword nonexistingwordthatwillneverexisteverever |
eb6eaef7ae44
help: provide a more helpful message when no keyword are matched
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21254
diff
changeset
|
991 abort: no matches |
eb6eaef7ae44
help: provide a more helpful message when no keyword are matched
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21254
diff
changeset
|
992 (try "hg help" for a list of topics) |
eb6eaef7ae44
help: provide a more helpful message when no keyword are matched
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21254
diff
changeset
|
993 [255] |
eb6eaef7ae44
help: provide a more helpful message when no keyword are matched
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
21254
diff
changeset
|
994 |
17837
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
995 Test omit indicating for help |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
996 |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
997 $ cat > addverboseitems.py <<EOF |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
998 > '''extension to test omit indicating. |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
999 > |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1000 > This paragraph is never omitted (for extension) |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1001 > |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1002 > .. container:: verbose |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1003 > |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1004 > This paragraph is omitted, |
23612
6006cad5e7a9
test: fix typo in test-help.t
André Sintzoff <andre.sintzoff@gmail.com>
parents:
23404
diff
changeset
|
1005 > if :hg:\`help\` is invoked without \`\`-v\`\` (for extension) |
17837
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1006 > |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1007 > This paragraph is never omitted, too (for extension) |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1008 > ''' |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1009 > |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1010 > from mercurial import help, commands |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1011 > testtopic = """This paragraph is never omitted (for topic). |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1012 > |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1013 > .. container:: verbose |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1014 > |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1015 > This paragraph is omitted, |
23612
6006cad5e7a9
test: fix typo in test-help.t
André Sintzoff <andre.sintzoff@gmail.com>
parents:
23404
diff
changeset
|
1016 > if :hg:\`help\` is invoked without \`\`-v\`\` (for topic) |
17837
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1017 > |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1018 > This paragraph is never omitted, too (for topic) |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1019 > """ |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1020 > def extsetup(ui): |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1021 > help.helptable.append((["topic-containing-verbose"], |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1022 > "This is the topic to test omit indicating.", |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1023 > lambda : testtopic)) |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1024 > EOF |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1025 $ echo '[extensions]' >> $HGRCPATH |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1026 $ echo "addverboseitems = `pwd`/addverboseitems.py" >> $HGRCPATH |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1027 $ hg help addverboseitems |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1028 addverboseitems extension - extension to test omit indicating. |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1029 |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1030 This paragraph is never omitted (for extension) |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1031 |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1032 This paragraph is never omitted, too (for extension) |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1033 |
22114
3ba1d7ca3dfd
help: normalize topic and extension verbose hints
Matt Mackall <mpm@selenic.com>
parents:
22111
diff
changeset
|
1034 (some details hidden, use --verbose to show complete help) |
17837
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1035 |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1036 no commands defined |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1037 $ hg help -v addverboseitems |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1038 addverboseitems extension - extension to test omit indicating. |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1039 |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1040 This paragraph is never omitted (for extension) |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1041 |
23612
6006cad5e7a9
test: fix typo in test-help.t
André Sintzoff <andre.sintzoff@gmail.com>
parents:
23404
diff
changeset
|
1042 This paragraph is omitted, if "hg help" is invoked without "-v" (for |
6006cad5e7a9
test: fix typo in test-help.t
André Sintzoff <andre.sintzoff@gmail.com>
parents:
23404
diff
changeset
|
1043 extension) |
17837
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1044 |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1045 This paragraph is never omitted, too (for extension) |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1046 |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1047 no commands defined |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1048 $ hg help topic-containing-verbose |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1049 This is the topic to test omit indicating. |
18748
6e676fb6ea44
help: use a full header for topic titles
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18747
diff
changeset
|
1050 """""""""""""""""""""""""""""""""""""""""" |
17837
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1051 |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1052 This paragraph is never omitted (for topic). |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1053 |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1054 This paragraph is never omitted, too (for topic) |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1055 |
22114
3ba1d7ca3dfd
help: normalize topic and extension verbose hints
Matt Mackall <mpm@selenic.com>
parents:
22111
diff
changeset
|
1056 (some details hidden, use --verbose to show complete help) |
17837
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1057 $ hg help -v topic-containing-verbose |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1058 This is the topic to test omit indicating. |
18748
6e676fb6ea44
help: use a full header for topic titles
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18747
diff
changeset
|
1059 """""""""""""""""""""""""""""""""""""""""" |
17837
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1060 |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1061 This paragraph is never omitted (for topic). |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1062 |
23612
6006cad5e7a9
test: fix typo in test-help.t
André Sintzoff <andre.sintzoff@gmail.com>
parents:
23404
diff
changeset
|
1063 This paragraph is omitted, if "hg help" is invoked without "-v" (for |
6006cad5e7a9
test: fix typo in test-help.t
André Sintzoff <andre.sintzoff@gmail.com>
parents:
23404
diff
changeset
|
1064 topic) |
17837
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1065 |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1066 This paragraph is never omitted, too (for topic) |
b623e323c561
help: indicate help omitting if help document is not fully displayed
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17717
diff
changeset
|
1067 |
22587
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1068 Test section lookup |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1069 |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1070 $ hg help revset.merge |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1071 "merge()" |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1072 Changeset is a merge changeset. |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1073 |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1074 $ hg help glossary.dag |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1075 DAG |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1076 The repository of changesets of a distributed version control system |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1077 (DVCS) can be described as a directed acyclic graph (DAG), consisting |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1078 of nodes and edges, where nodes correspond to changesets and edges |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1079 imply a parent -> child relation. This graph can be visualized by |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1080 graphical tools such as "hg log --graph". In Mercurial, the DAG is |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1081 limited by the requirement for children to have at most two parents. |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1082 |
22770
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1083 |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1084 $ hg help hgrc.paths |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1085 "paths" |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1086 ------- |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1087 |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1088 Assigns symbolic names to repositories. The left side is the symbolic |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1089 name, and the right gives the directory or URL that is the location of the |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1090 repository. Default paths can be declared by setting the following |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1091 entries. |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1092 |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1093 "default" |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1094 Directory or URL to use when pulling if no source is specified. |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1095 Default is set to repository from which the current repository was |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1096 cloned. |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1097 |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1098 "default-push" |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1099 Optional. Directory or URL to use when pushing if no destination is |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1100 specified. |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1101 |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1102 Custom paths can be defined by assigning the path to a name that later can |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1103 be used from the command line. Example: |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1104 |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1105 [paths] |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1106 my_path = http://example.com/path |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1107 |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1108 To push to the path defined in "my_path" run the command: |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1109 |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1110 hg push my_path |
de9424647fe4
help: show all nested subsections of a section with `hg help foo.section`
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
22587
diff
changeset
|
1111 |
22587
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1112 $ hg help glossary.mcguffin |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1113 abort: help section not found |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1114 [255] |
c3c3dd31fe1c
help: basic support for showing only specified topic sections
Matt Mackall <mpm@selenic.com>
parents:
22559
diff
changeset
|
1115 |
23122
d9e3f5055772
help: don't crash on help for 'sections' with multiple '.'
Mads Kiilerich <madski@unity3d.com>
parents:
22770
diff
changeset
|
1116 $ hg help glossary.mc.guffin |
d9e3f5055772
help: don't crash on help for 'sections' with multiple '.'
Mads Kiilerich <madski@unity3d.com>
parents:
22770
diff
changeset
|
1117 abort: help section not found |
d9e3f5055772
help: don't crash on help for 'sections' with multiple '.'
Mads Kiilerich <madski@unity3d.com>
parents:
22770
diff
changeset
|
1118 [255] |
d9e3f5055772
help: don't crash on help for 'sections' with multiple '.'
Mads Kiilerich <madski@unity3d.com>
parents:
22770
diff
changeset
|
1119 |
25723
2a8d8b4097c8
help: support 'hg help template.somekeyword'
Matt Harbison <matt_harbison@yahoo.com>
parents:
25652
diff
changeset
|
1120 $ hg help template.files |
2a8d8b4097c8
help: support 'hg help template.somekeyword'
Matt Harbison <matt_harbison@yahoo.com>
parents:
25652
diff
changeset
|
1121 files List of strings. All files modified, added, or removed by |
2a8d8b4097c8
help: support 'hg help template.somekeyword'
Matt Harbison <matt_harbison@yahoo.com>
parents:
25652
diff
changeset
|
1122 this changeset. |
2a8d8b4097c8
help: support 'hg help template.somekeyword'
Matt Harbison <matt_harbison@yahoo.com>
parents:
25652
diff
changeset
|
1123 |
24100
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1124 Test dynamic list of merge tools only shows up once |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1125 $ hg help merge-tools |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1126 Merge Tools |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1127 """"""""""" |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1128 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1129 To merge files Mercurial uses merge tools. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1130 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1131 A merge tool combines two different versions of a file into a merged file. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1132 Merge tools are given the two files and the greatest common ancestor of |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1133 the two file versions, so they can determine the changes made on both |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1134 branches. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1135 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1136 Merge tools are used both for "hg resolve", "hg merge", "hg update", "hg |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1137 backout" and in several extensions. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1138 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1139 Usually, the merge tool tries to automatically reconcile the files by |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1140 combining all non-overlapping changes that occurred separately in the two |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1141 different evolutions of the same initial base file. Furthermore, some |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1142 interactive merge programs make it easier to manually resolve conflicting |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1143 merges, either in a graphical way, or by inserting some conflict markers. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1144 Mercurial does not include any interactive merge programs but relies on |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1145 external tools for that. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1146 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1147 Available merge tools |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1148 ===================== |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1149 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1150 External merge tools and their properties are configured in the merge- |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1151 tools configuration section - see hgrc(5) - but they can often just be |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1152 named by their executable. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1153 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1154 A merge tool is generally usable if its executable can be found on the |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1155 system and if it can handle the merge. The executable is found if it is an |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1156 absolute or relative executable path or the name of an application in the |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1157 executable search path. The tool is assumed to be able to handle the merge |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1158 if it can handle symlinks if the file is a symlink, if it can handle |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1159 binary files if the file is binary, and if a GUI is available if the tool |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1160 requires a GUI. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1161 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1162 There are some internal merge tools which can be used. The internal merge |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1163 tools are: |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1164 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1165 ":dump" |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1166 Creates three versions of the files to merge, containing the contents of |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1167 local, other and base. These files can then be used to perform a merge |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1168 manually. If the file to be merged is named "a.txt", these files will |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1169 accordingly be named "a.txt.local", "a.txt.other" and "a.txt.base" and |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1170 they will be placed in the same directory as "a.txt". |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1171 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1172 ":fail" |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1173 Rather than attempting to merge files that were modified on both |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1174 branches, it marks them as unresolved. The resolve command must be used |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1175 to resolve these conflicts. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1176 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1177 ":local" |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1178 Uses the local version of files as the merged version. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1179 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1180 ":merge" |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1181 Uses the internal non-interactive simple merge algorithm for merging |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1182 files. It will fail if there are any conflicts and leave markers in the |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1183 partially merged file. Markers will have two sections, one for each side |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1184 of merge. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1185 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1186 ":merge3" |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1187 Uses the internal non-interactive simple merge algorithm for merging |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1188 files. It will fail if there are any conflicts and leave markers in the |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1189 partially merged file. Marker will have three sections, one from each |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1190 side of the merge and one for the base content. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1191 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1192 ":other" |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1193 Uses the other version of files as the merged version. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1194 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1195 ":prompt" |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1196 Asks the user which of the local or the other version to keep as the |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1197 merged version. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1198 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1199 ":tagmerge" |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1200 Uses the internal tag merge algorithm (experimental). |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1201 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1202 Internal tools are always available and do not require a GUI but will by |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1203 default not handle symlinks or binary files. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1204 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1205 Choosing a merge tool |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1206 ===================== |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1207 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1208 Mercurial uses these rules when deciding which merge tool to use: |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1209 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1210 1. If a tool has been specified with the --tool option to merge or |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1211 resolve, it is used. If it is the name of a tool in the merge-tools |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1212 configuration, its configuration is used. Otherwise the specified tool |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1213 must be executable by the shell. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1214 2. If the "HGMERGE" environment variable is present, its value is used and |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1215 must be executable by the shell. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1216 3. If the filename of the file to be merged matches any of the patterns in |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1217 the merge-patterns configuration section, the first usable merge tool |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1218 corresponding to a matching pattern is used. Here, binary capabilities |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1219 of the merge tool are not considered. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1220 4. If ui.merge is set it will be considered next. If the value is not the |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1221 name of a configured tool, the specified value is used and must be |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1222 executable by the shell. Otherwise the named tool is used if it is |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1223 usable. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1224 5. If any usable merge tools are present in the merge-tools configuration |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1225 section, the one with the highest priority is used. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1226 6. If a program named "hgmerge" can be found on the system, it is used - |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1227 but it will by default not be used for symlinks and binary files. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1228 7. If the file to be merged is not binary and is not a symlink, then |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1229 internal ":merge" is used. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1230 8. The merge of the file fails and must be resolved before commit. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1231 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1232 Note: |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1233 After selecting a merge program, Mercurial will by default attempt to |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1234 merge the files using a simple merge algorithm first. Only if it |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1235 doesn't succeed because of conflicting changes Mercurial will actually |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1236 execute the merge program. Whether to use the simple merge algorithm |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1237 first can be controlled by the premerge setting of the merge tool. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1238 Premerge is enabled by default unless the file is binary or a symlink. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1239 |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1240 See the merge-tools and ui sections of hgrc(5) for details on the |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1241 configuration of merge tools. |
7f23e67e9c38
test-help: add test to demonstrate that 'hg help merge-tools' is sane
Augie Fackler <augie@google.com>
parents:
23762
diff
changeset
|
1242 |
17648
07f1ac17b722
doc: add the tool to check section marks in help documents
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17322
diff
changeset
|
1243 Test usage of section marks in help documents |
07f1ac17b722
doc: add the tool to check section marks in help documents
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17322
diff
changeset
|
1244 |
07f1ac17b722
doc: add the tool to check section marks in help documents
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17322
diff
changeset
|
1245 $ cd "$TESTDIR"/../doc |
07f1ac17b722
doc: add the tool to check section marks in help documents
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
17322
diff
changeset
|
1246 $ python check-seclevel.py |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1247 $ cd $TESTTMP |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1248 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1249 #if serve |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1250 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1251 Test the help pages in hgweb. |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1252 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1253 Dish up an empty repo; serve it cold. |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1254 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1255 $ hg init "$TESTTMP/test" |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1256 $ hg serve -R "$TESTTMP/test" -n test -p $HGPORT -d --pid-file=hg.pid |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1257 $ cat hg.pid >> $DAEMON_PIDS |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1258 |
25472
4d2b9b304ad0
tests: drop explicit $TESTDIR from executables
Matt Mackall <mpm@selenic.com>
parents:
24871
diff
changeset
|
1259 $ get-with-headers.py 127.0.0.1:$HGPORT "help" |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1260 200 Script output follows |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1261 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1262 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1263 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1264 <head> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1265 <link rel="icon" href="/static/hgicon.png" type="image/png" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1266 <meta name="robots" content="index, nofollow" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1267 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1268 <script type="text/javascript" src="/static/mercurial.js"></script> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1269 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1270 <title>Help: Index</title> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1271 </head> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1272 <body> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1273 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1274 <div class="container"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1275 <div class="menu"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1276 <div class="logo"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1277 <a href="http://mercurial.selenic.com/"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1278 <img src="/static/hglogo.png" alt="mercurial" /></a> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1279 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1280 <ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1281 <li><a href="/shortlog">log</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1282 <li><a href="/graph">graph</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1283 <li><a href="/tags">tags</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1284 <li><a href="/bookmarks">bookmarks</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1285 <li><a href="/branches">branches</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1286 </ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1287 <ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1288 <li class="active">help</li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1289 </ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1290 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1291 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1292 <div class="main"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1293 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1294 <form class="search" action="/log"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1295 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1296 <p><input name="rev" id="search1" type="text" size="30" /></p> |
19796
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
1297 <div id="hint">Find changesets by keywords (author, files, the commit message), revision |
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
1298 number or hash, or <a href="/help/revsets">revset expression</a>.</div> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1299 </form> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1300 <table class="bigtable"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1301 <tr><td colspan="2"><h2><a name="main" href="#topics">Topics</a></h2></td></tr> |
18745
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1302 |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1303 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1304 <a href="/help/config"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1305 config |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1306 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1307 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1308 Configuration Files |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1309 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1310 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1311 <a href="/help/dates"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1312 dates |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1313 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1314 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1315 Date Formats |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1316 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1317 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1318 <a href="/help/diffs"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1319 diffs |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1320 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1321 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1322 Diff Formats |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1323 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1324 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1325 <a href="/help/environment"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1326 environment |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1327 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1328 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1329 Environment Variables |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1330 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1331 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1332 <a href="/help/extensions"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1333 extensions |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1334 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1335 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1336 Using Additional Features |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1337 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1338 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1339 <a href="/help/filesets"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1340 filesets |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1341 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1342 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1343 Specifying File Sets |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1344 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1345 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1346 <a href="/help/glossary"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1347 glossary |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1348 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1349 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1350 Glossary |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1351 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1352 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1353 <a href="/help/hgignore"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1354 hgignore |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1355 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1356 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1357 Syntax for Mercurial Ignore Files |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1358 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1359 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1360 <a href="/help/hgweb"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1361 hgweb |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1362 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1363 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1364 Configuring hgweb |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1365 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1366 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1367 <a href="/help/merge-tools"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1368 merge-tools |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1369 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1370 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1371 Merge Tools |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1372 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1373 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1374 <a href="/help/multirevs"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1375 multirevs |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1376 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1377 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1378 Specifying Multiple Revisions |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1379 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1380 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1381 <a href="/help/patterns"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1382 patterns |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1383 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1384 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1385 File Name Patterns |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1386 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1387 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1388 <a href="/help/phases"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1389 phases |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1390 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1391 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1392 Working with Phases |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1393 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1394 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1395 <a href="/help/revisions"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1396 revisions |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1397 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1398 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1399 Specifying Single Revisions |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1400 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1401 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1402 <a href="/help/revsets"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1403 revsets |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1404 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1405 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1406 Specifying Revision Sets |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1407 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1408 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1409 <a href="/help/subrepos"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1410 subrepos |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1411 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1412 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1413 Subrepositories |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1414 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1415 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1416 <a href="/help/templating"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1417 templating |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1418 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1419 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1420 Template Usage |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1421 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1422 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1423 <a href="/help/urls"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1424 urls |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1425 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1426 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1427 URL Paths |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1428 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1429 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1430 <a href="/help/topic-containing-verbose"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1431 topic-containing-verbose |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1432 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1433 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1434 This is the topic to test omit indicating. |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1435 </td></tr> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1436 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1437 <tr><td colspan="2"><h2><a name="main" href="#main">Main Commands</a></h2></td></tr> |
18745
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1438 |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1439 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1440 <a href="/help/add"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1441 add |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1442 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1443 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1444 add the specified files on the next commit |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1445 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1446 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1447 <a href="/help/annotate"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1448 annotate |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1449 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1450 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1451 show changeset information by line for each file |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1452 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1453 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1454 <a href="/help/clone"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1455 clone |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1456 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1457 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1458 make a copy of an existing repository |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1459 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1460 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1461 <a href="/help/commit"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1462 commit |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1463 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1464 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1465 commit the specified files or all outstanding changes |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1466 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1467 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1468 <a href="/help/diff"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1469 diff |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1470 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1471 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1472 diff repository (or selected files) |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1473 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1474 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1475 <a href="/help/export"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1476 export |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1477 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1478 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1479 dump the header and diffs for one or more changesets |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1480 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1481 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1482 <a href="/help/forget"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1483 forget |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1484 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1485 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1486 forget the specified files on the next commit |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1487 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1488 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1489 <a href="/help/init"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1490 init |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1491 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1492 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1493 create a new repository in the given directory |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1494 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1495 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1496 <a href="/help/log"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1497 log |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1498 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1499 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1500 show revision history of entire repository or files |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1501 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1502 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1503 <a href="/help/merge"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1504 merge |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1505 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1506 </td><td> |
23400
3bd577a3283e
merge: be precise about what merged into what in short desc
anatoly techtonik <techtonik@gmail.com>
parents:
23122
diff
changeset
|
1507 merge another revision into working directory |
18745
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1508 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1509 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1510 <a href="/help/pull"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1511 pull |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1512 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1513 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1514 pull changes from the specified source |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1515 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1516 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1517 <a href="/help/push"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1518 push |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1519 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1520 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1521 push changes to the specified destination |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1522 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1523 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1524 <a href="/help/remove"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1525 remove |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1526 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1527 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1528 remove the specified files on the next commit |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1529 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1530 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1531 <a href="/help/serve"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1532 serve |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1533 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1534 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1535 start stand-alone webserver |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1536 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1537 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1538 <a href="/help/status"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1539 status |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1540 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1541 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1542 show changed files in the working directory |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1543 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1544 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1545 <a href="/help/summary"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1546 summary |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1547 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1548 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1549 summarize working directory state |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1550 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1551 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1552 <a href="/help/update"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1553 update |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1554 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1555 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1556 update working directory (or switch revisions) |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1557 </td></tr> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1558 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1559 <tr><td colspan="2"><h2><a name="other" href="#other">Other Commands</a></h2></td></tr> |
18745
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1560 |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1561 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1562 <a href="/help/addremove"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1563 addremove |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1564 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1565 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1566 add all new files, delete all missing files |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1567 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1568 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1569 <a href="/help/archive"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1570 archive |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1571 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1572 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1573 create an unversioned archive of a repository revision |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1574 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1575 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1576 <a href="/help/backout"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1577 backout |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1578 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1579 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1580 reverse effect of earlier changeset |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1581 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1582 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1583 <a href="/help/bisect"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1584 bisect |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1585 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1586 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1587 subdivision search of changesets |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1588 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1589 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1590 <a href="/help/bookmarks"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1591 bookmarks |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1592 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1593 </td><td> |
21762
0c6cdbb697d9
bookmarks: improve the bookmark help (issue4244)
Matt Mackall <mpm@selenic.com>
parents:
21289
diff
changeset
|
1594 create a new bookmark or list existing bookmarks |
18745
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1595 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1596 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1597 <a href="/help/branch"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1598 branch |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1599 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1600 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1601 set or show the current branch name |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1602 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1603 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1604 <a href="/help/branches"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1605 branches |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1606 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1607 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1608 list repository named branches |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1609 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1610 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1611 <a href="/help/bundle"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1612 bundle |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1613 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1614 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1615 create a changegroup file |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1616 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1617 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1618 <a href="/help/cat"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1619 cat |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1620 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1621 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1622 output the current or given revision of files |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1623 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1624 <tr><td> |
20570
c21e1e3ab915
config: move showconfig code and add config as primary alias
Matt Mackall <mpm@selenic.com>
parents:
20245
diff
changeset
|
1625 <a href="/help/config"> |
c21e1e3ab915
config: move showconfig code and add config as primary alias
Matt Mackall <mpm@selenic.com>
parents:
20245
diff
changeset
|
1626 config |
c21e1e3ab915
config: move showconfig code and add config as primary alias
Matt Mackall <mpm@selenic.com>
parents:
20245
diff
changeset
|
1627 </a> |
c21e1e3ab915
config: move showconfig code and add config as primary alias
Matt Mackall <mpm@selenic.com>
parents:
20245
diff
changeset
|
1628 </td><td> |
c21e1e3ab915
config: move showconfig code and add config as primary alias
Matt Mackall <mpm@selenic.com>
parents:
20245
diff
changeset
|
1629 show combined config settings from all hgrc files |
c21e1e3ab915
config: move showconfig code and add config as primary alias
Matt Mackall <mpm@selenic.com>
parents:
20245
diff
changeset
|
1630 </td></tr> |
c21e1e3ab915
config: move showconfig code and add config as primary alias
Matt Mackall <mpm@selenic.com>
parents:
20245
diff
changeset
|
1631 <tr><td> |
18745
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1632 <a href="/help/copy"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1633 copy |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1634 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1635 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1636 mark files as copied for the next commit |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1637 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1638 <tr><td> |
22423
edf07a804ac4
files: add new command unifying locate and manifest functionality
Matt Mackall <mpm@selenic.com>
parents:
22118
diff
changeset
|
1639 <a href="/help/files"> |
edf07a804ac4
files: add new command unifying locate and manifest functionality
Matt Mackall <mpm@selenic.com>
parents:
22118
diff
changeset
|
1640 files |
edf07a804ac4
files: add new command unifying locate and manifest functionality
Matt Mackall <mpm@selenic.com>
parents:
22118
diff
changeset
|
1641 </a> |
edf07a804ac4
files: add new command unifying locate and manifest functionality
Matt Mackall <mpm@selenic.com>
parents:
22118
diff
changeset
|
1642 </td><td> |
edf07a804ac4
files: add new command unifying locate and manifest functionality
Matt Mackall <mpm@selenic.com>
parents:
22118
diff
changeset
|
1643 list tracked files |
edf07a804ac4
files: add new command unifying locate and manifest functionality
Matt Mackall <mpm@selenic.com>
parents:
22118
diff
changeset
|
1644 </td></tr> |
edf07a804ac4
files: add new command unifying locate and manifest functionality
Matt Mackall <mpm@selenic.com>
parents:
22118
diff
changeset
|
1645 <tr><td> |
18745
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1646 <a href="/help/graft"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1647 graft |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1648 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1649 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1650 copy changes from other branches onto the current branch |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1651 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1652 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1653 <a href="/help/grep"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1654 grep |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1655 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1656 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1657 search for a pattern in specified files and revisions |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1658 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1659 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1660 <a href="/help/heads"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1661 heads |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1662 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1663 </td><td> |
19469
bf6bc4681383
heads: modernize documentation (issue3992)
Matt Mackall <mpm@selenic.com>
parents:
19434
diff
changeset
|
1664 show branch heads |
18745
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1665 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1666 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1667 <a href="/help/help"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1668 help |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1669 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1670 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1671 show help for a given topic or a help overview |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1672 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1673 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1674 <a href="/help/identify"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1675 identify |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1676 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1677 </td><td> |
24364
135b23868f45
commands: replace "working copy" with "working directory" in help/messages
Yuya Nishihara <yuya@tcha.org>
parents:
24347
diff
changeset
|
1678 identify the working directory or specified revision |
18745
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1679 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1680 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1681 <a href="/help/import"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1682 import |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1683 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1684 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1685 import an ordered set of patches |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1686 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1687 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1688 <a href="/help/incoming"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1689 incoming |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1690 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1691 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1692 show new changesets found in source |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1693 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1694 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1695 <a href="/help/manifest"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1696 manifest |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1697 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1698 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1699 output the current or given revision of the project manifest |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1700 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1701 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1702 <a href="/help/nohelp"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1703 nohelp |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1704 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1705 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1706 (no help text available) |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1707 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1708 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1709 <a href="/help/outgoing"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1710 outgoing |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1711 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1712 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1713 show changesets not found in the destination |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1714 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1715 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1716 <a href="/help/paths"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1717 paths |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1718 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1719 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1720 show aliases for remote repositories |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1721 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1722 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1723 <a href="/help/phase"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1724 phase |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1725 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1726 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1727 set or show the current phase name |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1728 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1729 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1730 <a href="/help/recover"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1731 recover |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1732 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1733 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1734 roll back an interrupted transaction |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1735 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1736 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1737 <a href="/help/rename"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1738 rename |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1739 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1740 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1741 rename files; equivalent of copy + remove |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1742 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1743 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1744 <a href="/help/resolve"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1745 resolve |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1746 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1747 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1748 redo merges or set/view the merge status of files |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1749 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1750 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1751 <a href="/help/revert"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1752 revert |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1753 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1754 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1755 restore files to their checkout state |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1756 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1757 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1758 <a href="/help/root"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1759 root |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1760 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1761 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1762 print the root (top) of the current working directory |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1763 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1764 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1765 <a href="/help/tag"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1766 tag |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1767 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1768 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1769 add one or more tags for the current or given revision |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1770 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1771 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1772 <a href="/help/tags"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1773 tags |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1774 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1775 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1776 list repository tags |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1777 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1778 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1779 <a href="/help/unbundle"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1780 unbundle |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1781 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1782 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1783 apply one or more changegroup files |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1784 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1785 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1786 <a href="/help/verify"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1787 verify |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1788 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1789 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1790 verify the integrity of the repository |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1791 </td></tr> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1792 <tr><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1793 <a href="/help/version"> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1794 version |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1795 </a> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1796 </td><td> |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1797 output version and copyright information |
3c7c25fa58e0
hgweb help: split up long lines (in generated output)
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18744
diff
changeset
|
1798 </td></tr> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1799 </table> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1800 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1801 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1802 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1803 <script type="text/javascript">process_dates()</script> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1804 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1805 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1806 </body> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1807 </html> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1808 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1809 |
25472
4d2b9b304ad0
tests: drop explicit $TESTDIR from executables
Matt Mackall <mpm@selenic.com>
parents:
24871
diff
changeset
|
1810 $ get-with-headers.py 127.0.0.1:$HGPORT "help/add" |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1811 200 Script output follows |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1812 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1813 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1814 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1815 <head> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1816 <link rel="icon" href="/static/hgicon.png" type="image/png" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1817 <meta name="robots" content="index, nofollow" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1818 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1819 <script type="text/javascript" src="/static/mercurial.js"></script> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1820 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1821 <title>Help: add</title> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1822 </head> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1823 <body> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1824 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1825 <div class="container"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1826 <div class="menu"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1827 <div class="logo"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1828 <a href="http://mercurial.selenic.com/"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1829 <img src="/static/hglogo.png" alt="mercurial" /></a> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1830 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1831 <ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1832 <li><a href="/shortlog">log</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1833 <li><a href="/graph">graph</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1834 <li><a href="/tags">tags</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1835 <li><a href="/bookmarks">bookmarks</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1836 <li><a href="/branches">branches</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1837 </ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1838 <ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1839 <li class="active"><a href="/help">help</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1840 </ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1841 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1842 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1843 <div class="main"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1844 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1845 <h3>Help: add</h3> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1846 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1847 <form class="search" action="/log"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1848 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1849 <p><input name="rev" id="search1" type="text" size="30" /></p> |
19796
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
1850 <div id="hint">Find changesets by keywords (author, files, the commit message), revision |
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
1851 number or hash, or <a href="/help/revsets">revset expression</a>.</div> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1852 </form> |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1853 <div id="doc"> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1854 <p> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1855 hg add [OPTION]... [FILE]... |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1856 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1857 <p> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1858 add the specified files on the next commit |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1859 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1860 <p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1861 Schedule files to be version controlled and added to the |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1862 repository. |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1863 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1864 <p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1865 The files will be added to the repository at the next commit. To |
18750
c9d923f5d8ae
minirst: CGI escape strings prior to embedding it in the HTML
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18749
diff
changeset
|
1866 undo an add before that, see "hg forget". |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1867 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1868 <p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1869 If no names are given, add all files to the repository. |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1870 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1871 <p> |
19079
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1872 An example showing how new (unknown) files are added |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1873 automatically by "hg add": |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1874 </p> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1875 <pre> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1876 \$ ls (re) |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1877 foo.c |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1878 \$ hg status (re) |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1879 ? foo.c |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1880 \$ hg add (re) |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1881 adding foo.c |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1882 \$ hg status (re) |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1883 A foo.c |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1884 </pre> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
1885 <p> |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1886 Returns 0 if all files are successfully added. |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1887 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1888 <p> |
22117
c1d93edcf004
help: fold repeatable option message into option table header
Matt Mackall <mpm@selenic.com>
parents:
22116
diff
changeset
|
1889 options ([+] can be repeated): |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1890 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1891 <table> |
18751
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1892 <tr><td>-I</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1893 <td>--include PATTERN [+]</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1894 <td>include names matching the given patterns</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1895 <tr><td>-X</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1896 <td>--exclude PATTERN [+]</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1897 <td>exclude names matching the given patterns</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1898 <tr><td>-S</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1899 <td>--subrepos</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1900 <td>recurse into subrepositories</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1901 <tr><td>-n</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1902 <td>--dry-run</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1903 <td>do not perform actions, just print output</td></tr> |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1904 </table> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1905 <p> |
22117
c1d93edcf004
help: fold repeatable option message into option table header
Matt Mackall <mpm@selenic.com>
parents:
22116
diff
changeset
|
1906 global options ([+] can be repeated): |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1907 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1908 <table> |
18751
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1909 <tr><td>-R</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1910 <td>--repository REPO</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1911 <td>repository root directory or name of overlay bundle file</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1912 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1913 <td>--cwd DIR</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1914 <td>change working directory</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1915 <tr><td>-y</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1916 <td>--noninteractive</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1917 <td>do not prompt, automatically pick the first choice for all prompts</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1918 <tr><td>-q</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1919 <td>--quiet</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1920 <td>suppress output</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1921 <tr><td>-v</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1922 <td>--verbose</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1923 <td>enable additional output</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1924 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1925 <td>--config CONFIG [+]</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1926 <td>set/override config option (use 'section.name=value')</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1927 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1928 <td>--debug</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1929 <td>enable debugging output</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1930 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1931 <td>--debugger</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1932 <td>start debugger</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1933 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1934 <td>--encoding ENCODE</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1935 <td>set the charset encoding (default: ascii)</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1936 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1937 <td>--encodingmode MODE</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1938 <td>set the charset encoding mode (default: strict)</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1939 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1940 <td>--traceback</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1941 <td>always print a traceback on exception</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1942 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1943 <td>--time</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1944 <td>time how long the command takes</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1945 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1946 <td>--profile</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1947 <td>print command execution profile</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1948 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1949 <td>--version</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1950 <td>output version information and exit</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1951 <tr><td>-h</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1952 <td>--help</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1953 <td>display help and exit</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1954 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1955 <td>--hidden</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
1956 <td>consider hidden changesets</td></tr> |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1957 </table> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1958 |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
1959 </div> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1960 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1961 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1962 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1963 <script type="text/javascript">process_dates()</script> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1964 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1965 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1966 </body> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1967 </html> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1968 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1969 |
25472
4d2b9b304ad0
tests: drop explicit $TESTDIR from executables
Matt Mackall <mpm@selenic.com>
parents:
24871
diff
changeset
|
1970 $ get-with-headers.py 127.0.0.1:$HGPORT "help/remove" |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1971 200 Script output follows |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1972 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1973 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1974 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1975 <head> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1976 <link rel="icon" href="/static/hgicon.png" type="image/png" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1977 <meta name="robots" content="index, nofollow" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1978 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1979 <script type="text/javascript" src="/static/mercurial.js"></script> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1980 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1981 <title>Help: remove</title> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1982 </head> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1983 <body> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1984 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1985 <div class="container"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1986 <div class="menu"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1987 <div class="logo"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1988 <a href="http://mercurial.selenic.com/"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1989 <img src="/static/hglogo.png" alt="mercurial" /></a> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1990 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1991 <ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1992 <li><a href="/shortlog">log</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1993 <li><a href="/graph">graph</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1994 <li><a href="/tags">tags</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1995 <li><a href="/bookmarks">bookmarks</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1996 <li><a href="/branches">branches</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1997 </ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1998 <ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
1999 <li class="active"><a href="/help">help</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2000 </ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2001 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2002 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2003 <div class="main"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2004 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2005 <h3>Help: remove</h3> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2006 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2007 <form class="search" action="/log"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2008 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2009 <p><input name="rev" id="search1" type="text" size="30" /></p> |
19796
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
2010 <div id="hint">Find changesets by keywords (author, files, the commit message), revision |
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
2011 number or hash, or <a href="/help/revsets">revset expression</a>.</div> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2012 </form> |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2013 <div id="doc"> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2014 <p> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2015 hg remove [OPTION]... FILE... |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2016 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2017 <p> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2018 aliases: rm |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2019 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2020 <p> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2021 remove the specified files on the next commit |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2022 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2023 <p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2024 Schedule the indicated files for removal from the current branch. |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2025 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2026 <p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2027 This command schedules the files to be removed at the next commit. |
18750
c9d923f5d8ae
minirst: CGI escape strings prior to embedding it in the HTML
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18749
diff
changeset
|
2028 To undo a remove before that, see "hg revert". To undo added |
c9d923f5d8ae
minirst: CGI escape strings prior to embedding it in the HTML
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18749
diff
changeset
|
2029 files, see "hg forget". |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2030 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2031 <p> |
19079
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2032 -A/--after can be used to remove only files that have already |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2033 been deleted, -f/--force can be used to force deletion, and -Af |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2034 can be used to remove files from the next revision without |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2035 deleting them from the working directory. |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2036 </p> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2037 <p> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2038 The following table details the behavior of remove for different |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2039 file states (columns) and option combinations (rows). The file |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2040 states are Added [A], Clean [C], Modified [M] and Missing [!] |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2041 (as reported by "hg status"). The actions are Warn, Remove |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2042 (from branch) and Delete (from disk): |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2043 </p> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2044 <table> |
19960
95304251c376
doc: put text into header of 1st column in table to generate page correctly
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
19796
diff
changeset
|
2045 <tr><td>opt/state</td> |
19079
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2046 <td>A</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2047 <td>C</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2048 <td>M</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2049 <td>!</td></tr> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2050 <tr><td>none</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2051 <td>W</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2052 <td>RD</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2053 <td>W</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2054 <td>R</td></tr> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2055 <tr><td>-f</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2056 <td>R</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2057 <td>RD</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2058 <td>RD</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2059 <td>R</td></tr> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2060 <tr><td>-A</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2061 <td>W</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2062 <td>W</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2063 <td>W</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2064 <td>R</td></tr> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2065 <tr><td>-Af</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2066 <td>R</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2067 <td>R</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2068 <td>R</td> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2069 <td>R</td></tr> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2070 </table> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2071 <p> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2072 Note that remove never deletes files in Added [A] state from the |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2073 working directory, not even if option --force is specified. |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2074 </p> |
1e433b5457fd
hgweb: make help verbose again (issue3899)
Alexander Plavin <me@aplavin.ru>
parents:
18751
diff
changeset
|
2075 <p> |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2076 Returns 0 on success, 1 if any warnings encountered. |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2077 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2078 <p> |
22117
c1d93edcf004
help: fold repeatable option message into option table header
Matt Mackall <mpm@selenic.com>
parents:
22116
diff
changeset
|
2079 options ([+] can be repeated): |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2080 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2081 <table> |
18751
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2082 <tr><td>-A</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2083 <td>--after</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2084 <td>record delete for missing files</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2085 <tr><td>-f</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2086 <td>--force</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2087 <td>remove (and delete) file even if added or modified</td></tr> |
23325
4165cfd67519
remove: recurse into subrepositories with --subrepos/-S flag
Matt Harbison <matt_harbison@yahoo.com>
parents:
23298
diff
changeset
|
2088 <tr><td>-S</td> |
4165cfd67519
remove: recurse into subrepositories with --subrepos/-S flag
Matt Harbison <matt_harbison@yahoo.com>
parents:
23298
diff
changeset
|
2089 <td>--subrepos</td> |
4165cfd67519
remove: recurse into subrepositories with --subrepos/-S flag
Matt Harbison <matt_harbison@yahoo.com>
parents:
23298
diff
changeset
|
2090 <td>recurse into subrepositories</td></tr> |
18751
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2091 <tr><td>-I</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2092 <td>--include PATTERN [+]</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2093 <td>include names matching the given patterns</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2094 <tr><td>-X</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2095 <td>--exclude PATTERN [+]</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2096 <td>exclude names matching the given patterns</td></tr> |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2097 </table> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2098 <p> |
22117
c1d93edcf004
help: fold repeatable option message into option table header
Matt Mackall <mpm@selenic.com>
parents:
22116
diff
changeset
|
2099 global options ([+] can be repeated): |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2100 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2101 <table> |
18751
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2102 <tr><td>-R</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2103 <td>--repository REPO</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2104 <td>repository root directory or name of overlay bundle file</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2105 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2106 <td>--cwd DIR</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2107 <td>change working directory</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2108 <tr><td>-y</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2109 <td>--noninteractive</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2110 <td>do not prompt, automatically pick the first choice for all prompts</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2111 <tr><td>-q</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2112 <td>--quiet</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2113 <td>suppress output</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2114 <tr><td>-v</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2115 <td>--verbose</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2116 <td>enable additional output</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2117 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2118 <td>--config CONFIG [+]</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2119 <td>set/override config option (use 'section.name=value')</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2120 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2121 <td>--debug</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2122 <td>enable debugging output</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2123 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2124 <td>--debugger</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2125 <td>start debugger</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2126 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2127 <td>--encoding ENCODE</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2128 <td>set the charset encoding (default: ascii)</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2129 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2130 <td>--encodingmode MODE</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2131 <td>set the charset encoding mode (default: strict)</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2132 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2133 <td>--traceback</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2134 <td>always print a traceback on exception</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2135 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2136 <td>--time</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2137 <td>time how long the command takes</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2138 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2139 <td>--profile</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2140 <td>print command execution profile</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2141 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2142 <td>--version</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2143 <td>output version information and exit</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2144 <tr><td>-h</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2145 <td>--help</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2146 <td>display help and exit</td></tr> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2147 <tr><td></td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2148 <td>--hidden</td> |
13aa81e2fded
minirst: HTML formatter tweaks
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18750
diff
changeset
|
2149 <td>consider hidden changesets</td></tr> |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2150 </table> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2151 |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2152 </div> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2153 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2154 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2155 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2156 <script type="text/javascript">process_dates()</script> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2157 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2158 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2159 </body> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2160 </html> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2161 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2162 |
25472
4d2b9b304ad0
tests: drop explicit $TESTDIR from executables
Matt Mackall <mpm@selenic.com>
parents:
24871
diff
changeset
|
2163 $ get-with-headers.py 127.0.0.1:$HGPORT "help/revisions" |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2164 200 Script output follows |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2165 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2166 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2167 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2168 <head> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2169 <link rel="icon" href="/static/hgicon.png" type="image/png" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2170 <meta name="robots" content="index, nofollow" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2171 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" /> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2172 <script type="text/javascript" src="/static/mercurial.js"></script> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2173 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2174 <title>Help: revisions</title> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2175 </head> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2176 <body> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2177 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2178 <div class="container"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2179 <div class="menu"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2180 <div class="logo"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2181 <a href="http://mercurial.selenic.com/"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2182 <img src="/static/hglogo.png" alt="mercurial" /></a> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2183 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2184 <ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2185 <li><a href="/shortlog">log</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2186 <li><a href="/graph">graph</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2187 <li><a href="/tags">tags</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2188 <li><a href="/bookmarks">bookmarks</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2189 <li><a href="/branches">branches</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2190 </ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2191 <ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2192 <li class="active"><a href="/help">help</a></li> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2193 </ul> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2194 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2195 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2196 <div class="main"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2197 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2198 <h3>Help: revisions</h3> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2199 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2200 <form class="search" action="/log"> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2201 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2202 <p><input name="rev" id="search1" type="text" size="30" /></p> |
19796
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
2203 <div id="hint">Find changesets by keywords (author, files, the commit message), revision |
544848ef65f2
paper: edit search hint to include new feature description
Alexander Plavin <alexander@plav.in>
parents:
19795
diff
changeset
|
2204 number or hash, or <a href="/help/revsets">revset expression</a>.</div> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2205 </form> |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2206 <div id="doc"> |
18748
6e676fb6ea44
help: use a full header for topic titles
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18747
diff
changeset
|
2207 <h1>Specifying Single Revisions</h1> |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2208 <p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2209 Mercurial supports several ways to specify individual revisions. |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2210 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2211 <p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2212 A plain integer is treated as a revision number. Negative integers are |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2213 treated as sequential offsets from the tip, with -1 denoting the tip, |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2214 -2 denoting the revision prior to the tip, and so forth. |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2215 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2216 <p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2217 A 40-digit hexadecimal string is treated as a unique revision |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2218 identifier. |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2219 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2220 <p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2221 A hexadecimal string less than 40 characters long is treated as a |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2222 unique revision identifier and is referred to as a short-form |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2223 identifier. A short-form identifier is only valid if it is the prefix |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2224 of exactly one full-length identifier. |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2225 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2226 <p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2227 Any other string is treated as a bookmark, tag, or branch name. A |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2228 bookmark is a movable pointer to a revision. A tag is a permanent name |
20245
4edd179fefb8
help: branch names primarily denote the tipmost unclosed branch head
Mads Kiilerich <madski@unity3d.com>
parents:
20227
diff
changeset
|
2229 associated with a revision. A branch name denotes the tipmost open branch head |
4edd179fefb8
help: branch names primarily denote the tipmost unclosed branch head
Mads Kiilerich <madski@unity3d.com>
parents:
20227
diff
changeset
|
2230 of that branch - or if they are all closed, the tipmost closed head of the |
4edd179fefb8
help: branch names primarily denote the tipmost unclosed branch head
Mads Kiilerich <madski@unity3d.com>
parents:
20227
diff
changeset
|
2231 branch. Bookmark, tag, and branch names must not contain the ":" character. |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2232 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2233 <p> |
18750
c9d923f5d8ae
minirst: CGI escape strings prior to embedding it in the HTML
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18749
diff
changeset
|
2234 The reserved name "tip" always identifies the most recent revision. |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2235 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2236 <p> |
18750
c9d923f5d8ae
minirst: CGI escape strings prior to embedding it in the HTML
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18749
diff
changeset
|
2237 The reserved name "null" indicates the null revision. This is the |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2238 revision of an empty repository, and the parent of revision 0. |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2239 </p> |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2240 <p> |
18750
c9d923f5d8ae
minirst: CGI escape strings prior to embedding it in the HTML
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18749
diff
changeset
|
2241 The reserved name "." indicates the working directory parent. If no |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2242 working directory is checked out, it is equivalent to null. If an |
18750
c9d923f5d8ae
minirst: CGI escape strings prior to embedding it in the HTML
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18749
diff
changeset
|
2243 uncommitted merge is in progress, "." is the revision of the first |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2244 parent. |
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2245 </p> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2246 |
18747
f5db3092790f
hgweb: generate HTML documentation
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18745
diff
changeset
|
2247 </div> |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2248 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2249 </div> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2250 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2251 <script type="text/javascript">process_dates()</script> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2252 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2253 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2254 </body> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2255 </html> |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2256 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2257 |
25474
8c14f87bd0ae
tests: drop DAEMON_PIDS from killdaemons calls
Matt Mackall <mpm@selenic.com>
parents:
25472
diff
changeset
|
2258 $ killdaemons.py |
18744
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2259 |
f2bb897713a7
hgweb help: add tests
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
18475
diff
changeset
|
2260 #endif |