##// END OF EJS Templates
Add in and out aliases
mpm@selenic.com -
r940:1300271b default
parent child Browse files
Show More
@@ -203,6 +203,8 b' incoming [source]::'
203 203
204 204 Currently only local repositories are supported.
205 205
206 aliases: in
207
206 208 init [dest]::
207 209 Initialize a new repository in the given directory. If the given
208 210 directory does not exist, it is created.
@@ -262,6 +264,8 b' outgoing [dest]::'
262 264 default push repo. These are the changesets that would be pushed
263 265 if a push was requested.
264 266
267 aliases: out
268
265 269 parents::
266 270 Print the working directory's parent revisions.
267 271
@@ -1312,7 +1312,7 b' table = {'
1312 1312 [('p', 'strip', 1, 'path strip'),
1313 1313 ('b', 'base', "", 'base path')],
1314 1314 "hg import [-p NUM] [-b BASE] PATCH..."),
1315 "incoming": (incoming, [], 'hg incoming [SOURCE]'),
1315 "incoming|in": (incoming, [], 'hg incoming [SOURCE]'),
1316 1316 "^init": (init, [], 'hg init [DEST]'),
1317 1317 "locate":
1318 1318 (locate,
@@ -1328,7 +1328,7 b' table = {'
1328 1328 ('p', 'patch', None, 'show patch')],
1329 1329 'hg log [-r REV1 [-r REV2]] [-p] [FILE]'),
1330 1330 "manifest": (manifest, [], 'hg manifest [REV]'),
1331 "outgoing": (outgoing, [], 'hg outgoing [DEST]'),
1331 "outgoing|out": (outgoing, [], 'hg outgoing [DEST]'),
1332 1332 "parents": (parents, [], 'hg parents [REV]'),
1333 1333 "paths": (paths, [], 'hg paths [NAME]'),
1334 1334 "^pull":
General Comments 0
You need to be logged in to leave comments. Login now