##// END OF EJS Templates
commands: fix help string for pull -u and unbundle -u....
Greg Ward -
r10210:43f8abce stable
parent child Browse files
Show More
@@ -3577,7 +3577,7 b' table = {'
3577 3577 "^pull":
3578 3578 (pull,
3579 3579 [('u', 'update', None,
3580 _('update to new tip if changesets were pulled')),
3580 _('update to new branch head if changesets were pulled')),
3581 3581 ('f', 'force', None,
3582 3582 _('run even when remote repository is unrelated')),
3583 3583 ('r', 'rev', [],
@@ -3689,7 +3689,7 b' table = {'
3689 3689 "unbundle":
3690 3690 (unbundle,
3691 3691 [('u', 'update', None,
3692 _('update to new tip if changesets were unbundled'))],
3692 _('update to new branch head if changesets were unbundled'))],
3693 3693 _('[-u] FILE...')),
3694 3694 "^update|up|checkout|co":
3695 3695 (update,
General Comments 0
You need to be logged in to leave comments. Login now