##// END OF EJS Templates
Revert changeset 120aa5fc7ced1bf765b4f025f5a3a138cd87f49e....
bos@serpentine.internal.keyresearch.com -
r1191:77a0c752 default
parent child Browse files
Show More
@@ -266,16 +266,13 b' import [-p <n> -b <base> -f] <patches>::'
266 266
267 267 aliases: patch
268 268
269 incoming [-p] [source]::
269 incoming [source]::
270 270 Show new changesets found in the specified repo or the default
271 271 pull repo. These are the changesets that would be pulled if a pull
272 272 was requested.
273 273
274 274 Currently only local repositories are supported.
275 275
276 options:
277 -p, --patch show patch
278
279 276 aliases: in
280 277
281 278 init [dest]::
@@ -330,14 +327,11 b' manifest [revision]::'
330 327 The manifest is the list of files being version controlled. If no revision
331 328 is given then the tip is used.
332 329
333 outgoing [-p] [dest]::
330 outgoing [dest]::
334 331 Show changesets not found in the specified destination repo or the
335 332 default push repo. These are the changesets that would be pushed
336 333 if a push was requested.
337 334
338 options:
339 -p, --patch show patch
340
341 335 aliases: out
342 336
343 337 parents::
@@ -1064,7 +1064,7 b' def import_(ui, repo, patch1, *patches, '
1064 1064 addremove(ui, repo, *files)
1065 1065 repo.commit(files, message, user)
1066 1066
1067 def incoming(ui, repo, source="default", **opts):
1067 def incoming(ui, repo, source="default"):
1068 1068 """show new changesets found in source"""
1069 1069 source = ui.expandpath(source)
1070 1070 other = hg.repository(ui, source)
@@ -1079,10 +1079,6 b' def incoming(ui, repo, source="default",'
1079 1079 o.reverse()
1080 1080 for n in o:
1081 1081 show_changeset(ui, other, changenode=n)
1082 if opts['patch']:
1083 prev = other.changelog.parents(n)[0]
1084 dodiff(ui, ui, other, prev, n)
1085 ui.write("\n")
1086 1082
1087 1083 def init(ui, dest="."):
1088 1084 """create a new repository in the given directory"""
@@ -1164,7 +1160,7 b' def manifest(ui, repo, rev=None):'
1164 1160 for f in files:
1165 1161 ui.write("%40s %3s %s\n" % (hex(m[f]), mf[f] and "755" or "644", f))
1166 1162
1167 def outgoing(ui, repo, dest="default-push", **opts):
1163 def outgoing(ui, repo, dest="default-push"):
1168 1164 """show changesets not found in destination"""
1169 1165 dest = ui.expandpath(dest)
1170 1166 other = hg.repository(ui, dest)
@@ -1173,10 +1169,6 b' def outgoing(ui, repo, dest="default-pus'
1173 1169 o.reverse()
1174 1170 for n in o:
1175 1171 show_changeset(ui, repo, changenode=n)
1176 if opts['patch']:
1177 prev = repo.changelog.parents(n)[0]
1178 dodiff(ui, ui, repo, prev, n)
1179 ui.write("\n")
1180 1172
1181 1173 def parents(ui, repo, rev=None):
1182 1174 """show the parents of the working dir or revision"""
@@ -1671,9 +1663,7 b' table = {'
1671 1663 ('b', 'base', "", 'base path'),
1672 1664 ('m', 'mail-like', None, 'apply a patch that looks like email')],
1673 1665 "hg import [-f] [-p NUM] [-b BASE] PATCH..."),
1674 "incoming|in": (incoming,
1675 [('p', 'patch', None, 'show patch')],
1676 'hg incoming [-p] [SOURCE]'),
1666 "incoming|in": (incoming, [], 'hg incoming [SOURCE]'),
1677 1667 "^init": (init, [], 'hg init [DEST]'),
1678 1668 "locate":
1679 1669 (locate,
@@ -1691,9 +1681,7 b' table = {'
1691 1681 ('p', 'patch', None, 'show patch')],
1692 1682 'hg log [-I] [-X] [-r REV]... [-p] [FILE]'),
1693 1683 "manifest": (manifest, [], 'hg manifest [REV]'),
1694 "outgoing|out": (outgoing,
1695 [('p', 'patch', None, 'show patch')],
1696 'hg outgoing [-p] [DEST]'),
1684 "outgoing|out": (outgoing, [], 'hg outgoing [DEST]'),
1697 1685 "parents": (parents, [], 'hg parents [REV]'),
1698 1686 "paths": (paths, [], 'hg paths [NAME]'),
1699 1687 "^pull":
General Comments 0
You need to be logged in to leave comments. Login now