tests/test-help.out
author Thomas Arendsen Hein <thomas@intevation.de>
Fri, 15 Jul 2005 09:38:57 +0100
changeset 707 116b2d3f4554
parent 596 9a8daeff0ffa
child 725 c6b912f8b5b2
child 737 8db4d406b3d3
child 740 d2422f10c136
permissions -rw-r--r--
Changed command synopsises to match style of common UNIX tools. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Changed command synopsises to match style of common UNIX tools. manifest hash: cf62235e46f5c06ac5a3c88cb61e9b57d35fe222 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC13YhW7P1GVgWeRoRAnSOAKCOtrYHZ2XMTjpphY/G2UZHcJcZeQCdFsgv D5Hu+s9ahVX8hns2ZbQpriI= =g6NW -----END PGP SIGNATURE-----
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
596
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
     1
basic hg commands (use "hg help -v" for more):
331
55f63f3b6a54 Add a simple testing framework
mpm@selenic.com
parents:
diff changeset
     2
596
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
     3
 add        add the specified files on the next commit
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
     4
 annotate   show changeset information per file line
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
     5
 clone      make a copy of an existing repository
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
     6
 commit     commit the specified files or all outstanding changes
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
     7
 diff       diff working directory (or selected files)
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
     8
 export     dump the header and diffs for one or more changesets
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
     9
 init       create a new repository in the current directory
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    10
 log        show the revision history of the repository or a single file
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    11
 pull       pull changes from the specified source
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    12
 push       push changes to the specified destination
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    13
 remove     remove the specified files on the next commit
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    14
 revert     revert modified files or dirs back to their unmodified states
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    15
 serve      export the repository via HTTP
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    16
 status     show changed files in the working directory
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    17
 update     update or merge working directory
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    18
basic hg commands (use "hg help -v" for more):
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    19
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    20
 add        add the specified files on the next commit
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    21
 annotate   show changeset information per file line
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    22
 clone      make a copy of an existing repository
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    23
 commit     commit the specified files or all outstanding changes
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    24
 diff       diff working directory (or selected files)
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    25
 export     dump the header and diffs for one or more changesets
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    26
 init       create a new repository in the current directory
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    27
 log        show the revision history of the repository or a single file
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    28
 pull       pull changes from the specified source
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    29
 push       push changes to the specified destination
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    30
 remove     remove the specified files on the next commit
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    31
 revert     revert modified files or dirs back to their unmodified states
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    32
 serve      export the repository via HTTP
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    33
 status     show changed files in the working directory
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    34
 update     update or merge working directory
331
55f63f3b6a54 Add a simple testing framework
mpm@selenic.com
parents:
diff changeset
    35
hg add: option -h not recognized
707
116b2d3f4554 Changed command synopsises to match style of common UNIX tools.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 596
diff changeset
    36
hg add FILE...
331
55f63f3b6a54 Add a simple testing framework
mpm@selenic.com
parents:
diff changeset
    37
55f63f3b6a54 Add a simple testing framework
mpm@selenic.com
parents:
diff changeset
    38
add the specified files on the next commit
596
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    39
hg add: option --skjdfks not recognized
707
116b2d3f4554 Changed command synopsises to match style of common UNIX tools.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 596
diff changeset
    40
hg add FILE...
596
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    41
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    42
add the specified files on the next commit
707
116b2d3f4554 Changed command synopsises to match style of common UNIX tools.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 596
diff changeset
    43
hg diff [-r REV1 [-r REV2]] [FILE]...
331
55f63f3b6a54 Add a simple testing framework
mpm@selenic.com
parents:
diff changeset
    44
55f63f3b6a54 Add a simple testing framework
mpm@selenic.com
parents:
diff changeset
    45
 -r --rev 
55f63f3b6a54 Add a simple testing framework
mpm@selenic.com
parents:
diff changeset
    46
   revision
55f63f3b6a54 Add a simple testing framework
mpm@selenic.com
parents:
diff changeset
    47
55f63f3b6a54 Add a simple testing framework
mpm@selenic.com
parents:
diff changeset
    48
diff working directory (or selected files)
55f63f3b6a54 Add a simple testing framework
mpm@selenic.com
parents:
diff changeset
    49
hg: unknown command foo
336
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents: 331
diff changeset
    50
hg: unknown command 'commands'
596
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    51
basic hg commands (use "hg help -v" for more):
336
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents: 331
diff changeset
    52
596
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    53
 add        add the specified files on the next commit
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    54
 annotate   show changeset information per file line
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    55
 clone      make a copy of an existing repository
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    56
 commit     commit the specified files or all outstanding changes
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    57
 diff       diff working directory (or selected files)
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    58
 export     dump the header and diffs for one or more changesets
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    59
 init       create a new repository in the current directory
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    60
 log        show the revision history of the repository or a single file
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    61
 pull       pull changes from the specified source
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    62
 push       push changes to the specified destination
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    63
 remove     remove the specified files on the next commit
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    64
 revert     revert modified files or dirs back to their unmodified states
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    65
 serve      export the repository via HTTP
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    66
 status     show changed files in the working directory
9a8daeff0ffa A bunch of parsing/help updates
mpm@selenic.com
parents: 593
diff changeset
    67
 update     update or merge working directory