author | mpm@selenic.com |
Mon, 27 Jun 2005 23:52:31 -0800 | |
changeset 496 | 6ce95a04999d |
parent 485 | c5705ab9cebd |
child 509 | 98a2935c3d6c |
permissions | -rw-r--r-- |
423
25afb21d97ba
Support for 'hg --version'. setup.py stores version from hg repository.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
364
diff
changeset
|
1 |
+ hg -q help |
331 | 2 |
hg commands: |
3 |
||
4 |
add add the specified files on the next commit |
|
5 |
addremove add all new files, delete all missing files |
|
6 |
annotate show changeset information per file line |
|
7 |
cat output the latest or given revision of a file |
|
485 | 8 |
clone make a copy of an existing repository |
331 | 9 |
commit commit the specified files or all outstanding changes |
364
6f43778f26da
test-help: hg copy now shows up in the help
mpm@selenic.com
parents:
350
diff
changeset
|
10 |
copy mark a file as copied or renamed for the next commit |
331 | 11 |
diff diff working directory (or selected files) |
12 |
export dump the changeset header and diffs for a revision |
|
13 |
forget don't add the specified files on the next commit |
|
14 |
heads show current repository heads |
|
15 |
help show help for a given command or all commands |
|
16 |
history show the changelog history |
|
342 | 17 |
identify print information about the working copy |
440 | 18 |
import import an ordered set of patches |
496 | 19 |
init create a new repository in the current directory |
331 | 20 |
log show the revision history of a single file |
21 |
manifest output the latest or given revision of the project manifest |
|
22 |
parents show the parents of the current working dir |
|
23 |
pull pull changes from the specified source |
|
24 |
push push changes to the specified destination |
|
25 |
rawcommit raw commit interface |
|
26 |
recover roll back an interrupted transaction |
|
27 |
remove remove the specified files on the next commit |
|
468 | 28 |
root print the root (top) of the current working dir |
331 | 29 |
serve export the repository via HTTP |
30 |
status show changed files in the working directory |
|
401
af4848f83e68
From: Radoslaw Szkodzinski <astralstorm@gorzow.mm.pl>
mpm@selenic.com
parents:
364
diff
changeset
|
31 |
tag add a tag for the current tip or a given revision |
331 | 32 |
tags list repository tags |
33 |
tip show the tip revision |
|
34 |
undo undo the last transaction |
|
35 |
update update or merge working directory |
|
36 |
verify verify the integrity of the repository |
|
467 | 37 |
version output version and copyright information |
331 | 38 |
+ hg add -h |
39 |
hg add: option -h not recognized |
|
40 |
hg add [files] |
|
41 |
||
42 |
add the specified files on the next commit |
|
43 |
+ hg help diff |
|
44 |
hg diff [-r A] [-r B] [files] |
|
45 |
||
46 |
-r --rev |
|
47 |
revision |
|
48 |
||
49 |
diff working directory (or selected files) |
|
50 |
+ hg help foo |
|
51 |
hg: unknown command foo |
|
423
25afb21d97ba
Support for 'hg --version'. setup.py stores version from hg repository.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
364
diff
changeset
|
52 |
+ hg -q commands |
336 | 53 |
hg: unknown command 'commands' |
54 |
hg commands: |
|
55 |
||
56 |
add add the specified files on the next commit |
|
57 |
addremove add all new files, delete all missing files |
|
58 |
annotate show changeset information per file line |
|
59 |
cat output the latest or given revision of a file |
|
485 | 60 |
clone make a copy of an existing repository |
336 | 61 |
commit commit the specified files or all outstanding changes |
364
6f43778f26da
test-help: hg copy now shows up in the help
mpm@selenic.com
parents:
350
diff
changeset
|
62 |
copy mark a file as copied or renamed for the next commit |
336 | 63 |
diff diff working directory (or selected files) |
64 |
export dump the changeset header and diffs for a revision |
|
65 |
forget don't add the specified files on the next commit |
|
66 |
heads show current repository heads |
|
67 |
help show help for a given command or all commands |
|
68 |
history show the changelog history |
|
342 | 69 |
identify print information about the working copy |
440 | 70 |
import import an ordered set of patches |
496 | 71 |
init create a new repository in the current directory |
336 | 72 |
log show the revision history of a single file |
73 |
manifest output the latest or given revision of the project manifest |
|
74 |
parents show the parents of the current working dir |
|
75 |
pull pull changes from the specified source |
|
76 |
push push changes to the specified destination |
|
77 |
rawcommit raw commit interface |
|
78 |
recover roll back an interrupted transaction |
|
79 |
remove remove the specified files on the next commit |
|
468 | 80 |
root print the root (top) of the current working dir |
336 | 81 |
serve export the repository via HTTP |
82 |
status show changed files in the working directory |
|
401
af4848f83e68
From: Radoslaw Szkodzinski <astralstorm@gorzow.mm.pl>
mpm@selenic.com
parents:
364
diff
changeset
|
83 |
tag add a tag for the current tip or a given revision |
336 | 84 |
tags list repository tags |
85 |
tip show the tip revision |
|
86 |
undo undo the last transaction |
|
87 |
update update or merge working directory |
|
88 |
verify verify the integrity of the repository |
|
467 | 89 |
version output version and copyright information |
336 | 90 |
+ exit 0 |