/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

  • Committer: Martin Pool
  • Date: 2008-05-08 04:33:38 UTC
  • mfrom: (3414 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3415.
  • Revision ID: mbp@sourcefrog.net-20080508043338-ru3vflx8z641a76k
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
292
292
-Dlock            Trace when lockdir locks are taken or released.
293
293
-Dmerge           Emit information for debugging merges.
294
294
-Dpack            Emit information about pack operations.
295
 
-Dselftest_debug  Do not disable all debug flags when running selftest.
296
295
"""
297
296
 
298
297
_standard_options = \
605
604
differences.
606
605
"""
607
606
 
 
607
_branches_out_of_sync = """Branches out of sync
 
608
 
 
609
When reconfiguring a checkout, tree or branch into a lightweight checkout,
 
610
a local branch must be destroyed.  (For checkouts, this is the local branch
 
611
that serves primarily as a cache.)  If the branch-to-be-destroyed does not
 
612
have the same last revision as the new reference branch for the lightweight
 
613
checkout, data could be lost, so Bazaar refuses.
 
614
 
 
615
How you deal with this depends on *why* the branches are out of sync.
 
616
 
 
617
If you have a checkout and have done local commits, you can get back in sync
 
618
by running "bzr update" (and possibly "bzr commit").
 
619
 
 
620
If you have a branch and the remote branch is out-of-date, you can push
 
621
the local changes using "bzr push".  If the local branch is out of date, you
 
622
can do "bzr pull".  If both branches have had changes, you can merge, commit
 
623
and then push your changes.  If you decide that some of the changes aren't
 
624
useful, you can "push --overwrite" or "pull --overwrite" instead.
 
625
"""
 
626
 
608
627
 
609
628
# Register help topics
610
629
topic_registry.register("revisionspec", _help_on_revisionspec,
662
681
                        'Information on working trees', SECT_CONCEPT)
663
682
topic_registry.register('criss-cross', _criss_cross,
664
683
                        'Information on criss-cross merging', SECT_CONCEPT)
 
684
topic_registry.register('sync-for-reconfigure', _branches_out_of_sync,
 
685
                        'Information on criss-cross merging', SECT_CONCEPT)
665
686
 
666
687
 
667
688
class HelpTopicIndex(object):