##// END OF EJS Templates
rebase: suggest help -e histedit...
timeless@mozdev.org -
r26495:7837653c default
parent child Browse files
Show More
@@ -217,7 +217,7 b' def rebase(ui, repo, **opts):'
217 217 keepopen = opts.get('keepopen', False)
218 218
219 219 if opts.get('interactive'):
220 help = "hg help histedit"
220 help = "hg help -e histedit"
221 221 msg = _("interactive history editing is supported by the "
222 222 "'histedit' extension (see \"%s\")") % help
223 223 raise util.Abort(msg)
@@ -490,11 +490,11 b' Test --tool parameter:'
490 490 saved backup bundle to $TESTTMP/b3/.hg/strip-backup/e4e3f3546619-b0841178-backup.hg (glob)
491 491
492 492 $ hg rebase -i
493 abort: interactive history editing is supported by the 'histedit' extension (see "hg help histedit")
493 abort: interactive history editing is supported by the 'histedit' extension (see "hg help -e histedit")
494 494 [255]
495 495
496 496 $ hg rebase --interactive
497 abort: interactive history editing is supported by the 'histedit' extension (see "hg help histedit")
497 abort: interactive history editing is supported by the 'histedit' extension (see "hg help -e histedit")
498 498 [255]
499 499
500 500 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now