##// END OF EJS Templates
commands: add postincoming docstring for explanation of arguments
FUJIWARA Katsunori -
r28502:e0d19d95 default
parent child Browse files
Show More
@@ -5615,6 +5615,15 b' def phase(ui, repo, *revs, **opts):'
5615 5615 return ret
5616 5616
5617 5617 def postincoming(ui, repo, modheads, optupdate, checkout, brev):
5618 """Run after a changegroup has been added via pull/unbundle
5619
5620 This takes arguments below:
5621
5622 :modheads: change of heads by pull/unbundle
5623 :optupdate: updating working directory is needed or not
5624 :checkout: update destination revision (or None to default destination)
5625 :brev: a name, which might be a bookmark to be activated after updating
5626 """
5618 5627 if modheads == 0:
5619 5628 return
5620 5629 if optupdate:
General Comments 0
You need to be logged in to leave comments. Login now