521
496
_merge_type_registry = MergeTypeRegistry()
497
_merge_type_registry.register_lazy('merge3', 'bzrlib.merge', 'Merge3Merger',
498
"Native diff3-style merge")
522
499
_merge_type_registry.register_lazy('diff3', 'bzrlib.merge', 'Diff3Merger',
523
500
"Merge using external diff3")
501
_merge_type_registry.register_lazy('weave', 'bzrlib.merge', 'WeaveMerger',
524
503
_merge_type_registry.register_lazy('lca', 'bzrlib.merge', 'LCAMerger',
525
504
"LCA-newness merge")
526
_merge_type_registry.register_lazy('merge3', 'bzrlib.merge', 'Merge3Merger',
527
"Native diff3-style merge")
528
_merge_type_registry.register_lazy('weave', 'bzrlib.merge', 'WeaveMerger',
531
506
# Declare the standard options
532
507
_standard_option('help', short_name='h',
543
518
# Declare commonly used options
544
519
_global_option('all')
520
_global_option('overwrite', help='Ignore differences between branches and '
521
'overwrite unconditionally.')
545
522
_global_option('basis', type=str)
546
523
_global_option('bound')
547
_global_option('change',
548
type=_parse_change_str,
550
param_name='revision',
551
help='Select changes introduced by the specified revision. See also "help revisionspec".')
552
524
_global_option('diff-options', type=str)
553
_global_option('directory', short_name='d', type=unicode,
554
help='Branch to operate on, instead of working directory')
555
_global_option('dry-run',
556
help="Show what would be done, but don't actually do anything.")
557
_global_option('email')
558
525
_global_option('file', type=unicode, short_name='F')
559
526
_global_option('force')
560
527
_global_option('format', type=unicode)
561
528
_global_option('forward')
562
_global_option('kind', type=str)
563
_global_option('line', help='Use log format with one line per revision.'
564
' Same as --log-format line')
565
_global_registry_option('log-format', "Use specified log format.",
566
lazy_registry=('bzrlib.log', 'log_formatter_registry'),
567
value_switches=True, title='Log format',
568
short_value_switches={'short': 'S'})
569
_global_option('long', help='Use detailed log format.'
570
' Same as --log-format long',
572
_global_registry_option('merge-type', 'Select a particular merge algorithm.',
573
_merge_type_registry, value_switches=True,
574
title='Merge algorithm')
575
529
_global_option('message', type=unicode,
577
531
help='Message string.')
578
_global_option('name-from-revision', help='The path name in the old tree.')
579
_global_option('no-backup')
580
532
_global_option('no-recurse')
581
_global_option('null', short_name='0',
582
help='Use an ASCII NUL (\\0) separator rather than '
584
_global_option('overwrite', help='Ignore differences between branches and '
585
'overwrite unconditionally.')
586
_global_option('pattern', type=str)
587
533
_global_option('profile',
588
534
help='Show performance profiling information.')
589
_global_option('reprocess', help='Reprocess to reduce spurious conflicts.')
590
_global_option('remember', help='Remember the specified location as a'
592
535
_global_option('revision',
593
536
type=_parse_revision_str,
595
538
help='See "help revisionspec" for details.')
596
_global_option('short', help='Use moderately short log format.'
597
' Same as --log-format short')
539
_global_option('change',
540
type=_parse_change_str,
542
param_name='revision',
543
help='Select changes introduced by the specified revision. See also "help revisionspec".')
598
544
_global_option('show-ids',
599
545
help='Show internal object ids.')
600
546
_global_option('timezone',
602
548
help='Display timezone as local, original, or utc.')
603
_global_option('root', type=str)
604
549
_global_option('unbound')
550
_global_option('version')
551
_global_option('email')
605
552
_global_option('update')
606
_global_option('version')
553
_global_registry_option('log-format', "Use specified log format.",
554
lazy_registry=('bzrlib.log', 'log_formatter_registry'),
555
value_switches=True, title='Log format')
556
_global_option('long', help='Use detailed log format. Same as --log-format long',
558
_global_option('short', help='Use moderately short log format. Same as --log-format short')
559
_global_option('line', help='Use log format with one line per revision. Same as --log-format line')
560
_global_option('root', type=str)
561
_global_option('no-backup')
562
_global_registry_option('merge-type', 'Select a particular merge algorithm.',
563
_merge_type_registry, value_switches=True,
564
title='Merge algorithm')
565
_global_option('pattern', type=str)
566
_global_option('remember', help='Remember the specified location as a'
568
_global_option('reprocess', help='Reprocess to reduce spurious conflicts.')
569
_global_option('kind', type=str)
570
_global_option('dry-run',
571
help="Show what would be done, but don't actually do anything.")
572
_global_option('name-from-revision', help='The path name in the old tree.')
608
574
diff_writer_registry = _mod_registry.Registry()
609
575
diff_writer_registry.register('plain', lambda x: x, 'Plaintext diff output.')