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