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