Show More
@@ -811,22 +811,13 b' def rebase(ui, repo, **opts):' | |||||
811 | if len(selactions) > 1: |
|
811 | if len(selactions) > 1: | |
812 | raise error.Abort(_('cannot use --%s with --%s') |
|
812 | raise error.Abort(_('cannot use --%s with --%s') | |
813 | % tuple(selactions[:2])) |
|
813 | % tuple(selactions[:2])) | |
814 | if stop: |
|
814 | action = selactions[0] if selactions else None | |
815 | if opts.get('dry_run') or opts.get('confirm'): |
|
815 | if dryrun and action: | |
816 |
|
|
816 | raise error.Abort(_('cannot specify both --dry-run and --%s') % action) | |
817 | 'or --confirm')) |
|
817 | if confirm and action: | |
818 | if dryrun: |
|
818 | raise error.Abort(_('cannot specify both --confirm and --%s') % action) | |
819 | if opts.get('abort'): |
|
819 | if dryrun and confirm: | |
820 |
|
|
820 | raise error.Abort(_('cannot specify both --confirm and --dry-run')) | |
821 | if opts.get('continue'): |
|
|||
822 | raise error.Abort(_('cannot specify both --dry-run and --continue')) |
|
|||
823 | if confirm: |
|
|||
824 | if opts.get('dry_run'): |
|
|||
825 | raise error.Abort(_('cannot specify both --confirm and --dry-run')) |
|
|||
826 | if opts.get('abort'): |
|
|||
827 | raise error.Abort(_('cannot specify both --confirm and --abort')) |
|
|||
828 | if opts.get('continue'): |
|
|||
829 | raise error.Abort(_('cannot specify both --confirm and --continue')) |
|
|||
830 |
|
821 | |||
831 | if (opts.get('continue') or opts.get('abort') or |
|
822 | if (opts.get('continue') or opts.get('abort') or | |
832 | repo.currenttransaction() is not None): |
|
823 | repo.currenttransaction() is not None): |
@@ -2012,7 +2012,7 b' Test --stop raise errors with conflictin' | |||||
2012 | unresolved conflicts (see hg resolve, then hg rebase --continue) |
|
2012 | unresolved conflicts (see hg resolve, then hg rebase --continue) | |
2013 | [1] |
|
2013 | [1] | |
2014 | $ hg rebase --stop --dry-run |
|
2014 | $ hg rebase --stop --dry-run | |
2015 |
abort: cannot |
|
2015 | abort: cannot specify both --dry-run and --stop | |
2016 | [255] |
|
2016 | [255] | |
2017 |
|
2017 | |||
2018 | $ hg rebase -s 3 -d 5 |
|
2018 | $ hg rebase -s 3 -d 5 |
General Comments 0
You need to be logged in to leave comments.
Login now