~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-01-20 18:55:04 UTC
  • mfrom: (4971.2.2 505762)
  • Revision ID: pqm@pqm.ubuntu.com-20100120185504-es1x5ntwauunwxvp
(nmb) Explain bound branches in "branches" help topic

Show diffs side-by-side

added added

removed removed

Lines of Context:
520
520
branch history is stored), but multiple branches may share the same
521
521
repository (a shared repository). Branches can be copied and merged.
522
522
 
 
523
In addition, one branch may be bound to another one.  Binding to another
 
524
branch indicates that commits which happen in this branch must also 
 
525
happen in the other branch.  Bazaar ensures consistency by not allowing 
 
526
commits when the two branches are out of date.  In order for a commit 
 
527
to succeed, it may be necessary to update the current branch using 
 
528
``bzr update``.
 
529
 
523
530
Related commands::
524
531
 
525
532
  init    Change a directory into a versioned branch.
526
533
  branch  Create a new branch that is a copy of an existing branch.
527
534
  merge   Perform a three-way merge.
 
535
  bind    Bind a branch to another one.
528
536
"""
529
537
 
530
538