##// END OF EJS Templates
Minor test-help fix
mpm@selenic.com -
r1055:ea465485 default
parent child Browse files
Show More
@@ -1,201 +1,201 b''
1 1 Mercurial Distributed SCM
2 2
3 3 basic commands (use "hg help" for the full list or option "-v" for details):
4 4
5 5 add add the specified files on the next commit
6 6 annotate show changeset information per file line
7 7 clone make a copy of an existing repository
8 8 commit commit the specified files or all outstanding changes
9 9 diff diff working directory (or selected files)
10 10 export dump the header and diffs for one or more changesets
11 11 init create a new repository in the given directory
12 12 log show revision history of entire repository or files
13 13 pull pull changes from the specified source
14 14 push push changes to the specified destination
15 15 remove remove the specified files on the next commit
16 16 revert revert modified files or dirs back to their unmodified states
17 17 serve export the repository via HTTP
18 18 status show changed files in the working directory
19 19 update update or merge working directory
20 20 add add the specified files on the next commit
21 21 annotate show changeset information per file line
22 22 clone make a copy of an existing repository
23 23 commit commit the specified files or all outstanding changes
24 24 diff diff working directory (or selected files)
25 25 export dump the header and diffs for one or more changesets
26 26 init create a new repository in the given directory
27 27 log show revision history of entire repository or files
28 28 pull pull changes from the specified source
29 29 push push changes to the specified destination
30 30 remove remove the specified files on the next commit
31 31 revert revert modified files or dirs back to their unmodified states
32 32 serve export the repository via HTTP
33 33 status show changed files in the working directory
34 34 update update or merge working directory
35 35 Mercurial Distributed SCM
36 36
37 37 list of commands (use "hg help -v" to show aliases and global options):
38 38
39 39 add add the specified files on the next commit
40 40 addremove add all new files, delete all missing files
41 41 annotate show changeset information per file line
42 42 cat output the latest or given revision of a file
43 43 clone make a copy of an existing repository
44 44 commit commit the specified files or all outstanding changes
45 45 copy mark a file as copied or renamed for the next commit
46 46 diff diff working directory (or selected files)
47 47 export dump the header and diffs for one or more changesets
48 48 forget don't add the specified files on the next commit
49 49 heads show current repository heads
50 50 help show help for a given command or all commands
51 51 identify print information about the working copy
52 52 import import an ordered set of patches
53 53 incoming show new changesets found in source
54 54 init create a new repository in the given directory
55 55 locate locate files matching specific patterns
56 56 log show revision history of entire repository or files
57 57 manifest output the latest or given revision of the project manifest
58 58 outgoing show changesets not found in destination
59 59 parents show the parents of the working dir or revision
60 60 paths show definition of symbolic path names
61 61 pull pull changes from the specified source
62 62 push push changes to the specified destination
63 63 rawcommit raw commit interface
64 64 recover roll back an interrupted transaction
65 65 remove remove the specified files on the next commit
66 66 revert revert modified files or dirs back to their unmodified states
67 67 root print the root (top) of the current working dir
68 68 serve export the repository via HTTP
69 69 status show changed files in the working directory
70 70 tag add a tag for the current tip or a given revision
71 71 tags list repository tags
72 72 tip show the tip revision
73 73 undo undo the last commit or pull
74 74 update update or merge working directory
75 75 verify verify the integrity of the repository
76 76 version output version and copyright information
77 77 add add the specified files on the next commit
78 78 addremove add all new files, delete all missing files
79 79 annotate show changeset information per file line
80 80 cat output the latest or given revision of a file
81 81 clone make a copy of an existing repository
82 82 commit commit the specified files or all outstanding changes
83 83 copy mark a file as copied or renamed for the next commit
84 84 diff diff working directory (or selected files)
85 85 export dump the header and diffs for one or more changesets
86 86 forget don't add the specified files on the next commit
87 87 heads show current repository heads
88 88 help show help for a given command or all commands
89 89 identify print information about the working copy
90 90 import import an ordered set of patches
91 91 incoming show new changesets found in source
92 92 init create a new repository in the given directory
93 93 locate locate files matching specific patterns
94 94 log show revision history of entire repository or files
95 95 manifest output the latest or given revision of the project manifest
96 96 outgoing show changesets not found in destination
97 97 parents show the parents of the working dir or revision
98 98 paths show definition of symbolic path names
99 99 pull pull changes from the specified source
100 100 push push changes to the specified destination
101 101 rawcommit raw commit interface
102 102 recover roll back an interrupted transaction
103 103 remove remove the specified files on the next commit
104 104 revert revert modified files or dirs back to their unmodified states
105 105 root print the root (top) of the current working dir
106 106 serve export the repository via HTTP
107 107 status show changed files in the working directory
108 108 tag add a tag for the current tip or a given revision
109 109 tags list repository tags
110 110 tip show the tip revision
111 111 undo undo the last commit or pull
112 112 update update or merge working directory
113 113 verify verify the integrity of the repository
114 114 version output version and copyright information
115 115 hg add [OPTION]... [FILE]...
116 116
117 117 add the specified files on the next commit
118 118
119 119 options:
120 120
121 121 -I --include include path in search
122 122 -X --exclude exclude path from search
123 123 hg add: option --skjdfks not recognized
124 124 hg add [OPTION]... [FILE]...
125 125
126 126 add the specified files on the next commit
127 127
128 128 options:
129 129
130 130 -I --include include path in search
131 131 -X --exclude exclude path from search
132 hg diff [-I] [-X] [-r REV1 [-r REV2]] [FILE]...
132 hg diff [-a] [-I] [-X] [-r REV1 [-r REV2]] [FILE]...
133 133
134 134 diff working directory (or selected files)
135 135
136 136 options:
137 137
138 138 -r --rev revision
139 139 -a --text treat all files as text
140 140 -I --include include path in search
141 141 -X --exclude exclude path from search
142 142 hg status [OPTION]... [FILE]...
143 143
144 144 show changed files in the working directory
145 145
146 146 M = modified
147 147 A = added
148 148 R = removed
149 149 ? = not tracked
150 150
151 151 options:
152 152
153 153 -m --modified show only modified files
154 154 -a --added show only added files
155 155 -r --removed show only removed files
156 156 -u --unknown show only unknown (not tracked) files
157 157 -I --include include path in search
158 158 -X --exclude exclude path from search
159 159 hg status [OPTION]... [FILE]...
160 160
161 161 show changed files in the working directory
162 162 hg: unknown command 'foo'
163 163 Mercurial Distributed SCM
164 164
165 165 basic commands (use "hg help" for the full list or option "-v" for details):
166 166
167 167 add add the specified files on the next commit
168 168 annotate show changeset information per file line
169 169 clone make a copy of an existing repository
170 170 commit commit the specified files or all outstanding changes
171 171 diff diff working directory (or selected files)
172 172 export dump the header and diffs for one or more changesets
173 173 init create a new repository in the given directory
174 174 log show revision history of entire repository or files
175 175 pull pull changes from the specified source
176 176 push push changes to the specified destination
177 177 remove remove the specified files on the next commit
178 178 revert revert modified files or dirs back to their unmodified states
179 179 serve export the repository via HTTP
180 180 status show changed files in the working directory
181 181 update update or merge working directory
182 182 hg: unknown command 'skjdfks'
183 183 Mercurial Distributed SCM
184 184
185 185 basic commands (use "hg help" for the full list or option "-v" for details):
186 186
187 187 add add the specified files on the next commit
188 188 annotate show changeset information per file line
189 189 clone make a copy of an existing repository
190 190 commit commit the specified files or all outstanding changes
191 191 diff diff working directory (or selected files)
192 192 export dump the header and diffs for one or more changesets
193 193 init create a new repository in the given directory
194 194 log show revision history of entire repository or files
195 195 pull pull changes from the specified source
196 196 push push changes to the specified destination
197 197 remove remove the specified files on the next commit
198 198 revert revert modified files or dirs back to their unmodified states
199 199 serve export the repository via HTTP
200 200 status show changed files in the working directory
201 201 update update or merge working directory
General Comments 0
You need to be logged in to leave comments. Login now