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