##// END OF EJS Templates
morestatus: remove some extra spaces...
Pulkit Goyal -
r38360:50f5fc23 @45 default
parent child Browse files
Show More
@@ -588,8 +588,8 b' To mark files as resolved: hg resolve -'
588 return _commentlines(msg)
588 return _commentlines(msg)
589
589
590 def _helpmessage(continuecmd, abortcmd):
590 def _helpmessage(continuecmd, abortcmd):
591 msg = _('To continue: %s\n'
591 msg = _('To continue: %s\n'
592 'To abort: %s') % (continuecmd, abortcmd)
592 'To abort: %s') % (continuecmd, abortcmd)
593 return _commentlines(msg)
593 return _commentlines(msg)
594
594
595 def _rebasemsg():
595 def _rebasemsg():
@@ -603,7 +603,7 b' def _unshelvemsg():'
603
603
604 def _updatecleanmsg(dest=None):
604 def _updatecleanmsg(dest=None):
605 warning = _('warning: this will discard uncommitted changes')
605 warning = _('warning: this will discard uncommitted changes')
606 return 'hg update --clean %s (%s)' % (dest or '.', warning)
606 return 'hg update --clean %s (%s)' % (dest or '.', warning)
607
607
608 def _graftmsg():
608 def _graftmsg():
609 # tweakdefaults requires `update` to have a rev hence the `.`
609 # tweakdefaults requires `update` to have a rev hence the `.`
@@ -57,8 +57,8 b''
57 #
57 #
58 # To mark files as resolved: hg resolve --mark FILE
58 # To mark files as resolved: hg resolve --mark FILE
59
59
60 # To continue: hg commit
60 # To continue: hg commit
61 # To abort: hg update --clean . (warning: this will discard uncommitted changes)
61 # To abort: hg update --clean . (warning: this will discard uncommitted changes)
62
62
63
63
64 $ cat a
64 $ cat a
@@ -236,8 +236,8 b' Using status to get more context'
236 #
236 #
237 # To mark files as resolved: hg resolve --mark FILE
237 # To mark files as resolved: hg resolve --mark FILE
238
238
239 # To continue: hg graft --continue
239 # To continue: hg graft --continue
240 # To abort: hg update --clean . (warning: this will discard uncommitted changes)
240 # To abort: hg update --clean . (warning: this will discard uncommitted changes)
241
241
242
242
243 Commit while interrupted should fail:
243 Commit while interrupted should fail:
@@ -306,8 +306,8 b' should effectively drop the changes from'
306 #
306 #
307 # To mark files as resolved: hg resolve --mark FILE
307 # To mark files as resolved: hg resolve --mark FILE
308
308
309 # To continue: hg histedit --continue
309 # To continue: hg histedit --continue
310 # To abort: hg histedit --abort
310 # To abort: hg histedit --abort
311
311
312 $ hg resolve -l
312 $ hg resolve -l
313 U file
313 U file
@@ -80,8 +80,8 b' Conflicting rebase:'
80 #
80 #
81 # To mark files as resolved: hg resolve --mark FILE
81 # To mark files as resolved: hg resolve --mark FILE
82
82
83 # To continue: hg rebase --continue
83 # To continue: hg rebase --continue
84 # To abort: hg rebase --abort
84 # To abort: hg rebase --abort
85
85
86
86
87 Try to continue without solving the conflict:
87 Try to continue without solving the conflict:
@@ -354,8 +354,8 b' force a conflicted merge to occur'
354 #
354 #
355 # To mark files as resolved: hg resolve --mark FILE
355 # To mark files as resolved: hg resolve --mark FILE
356
356
357 # To continue: hg unshelve --continue
357 # To continue: hg unshelve --continue
358 # To abort: hg unshelve --abort
358 # To abort: hg unshelve --abort
359
359
360
360
361 ensure that we have a merge with unresolved conflicts
361 ensure that we have a merge with unresolved conflicts
General Comments 0
You need to be logged in to leave comments. Login now