~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/overview.txt

  • Committer: John Arbash Meinel
  • Date: 2010-02-17 17:11:16 UTC
  • mfrom: (4797.2.17 2.1)
  • mto: (4797.2.18 2.1)
  • mto: This revision was merged to the branch mainline in revision 5055.
  • Revision ID: john@arbash-meinel.com-20100217171116-h7t9223ystbnx5h8
merge bzr.2.1 in preparation for NEWS entry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
document, send a merge request or new text to the mailing list.
13
13
 
14
14
The current version of this document is available in the file
15
 
``doc/developers/overview.txt`` in the source tree, and available online 
 
15
``doc/developers/overview.txt`` in the source tree, and available online
16
16
within the developer documentation, <http://doc.bazaar-vcs.org/developers/>.
17
17
 
18
18
 
101
101
store a full text of the inventory, and of every new file text.
102
102
 
103
103
At runtime, repository stacking is actually configured by the branch, not
104
 
the repository.  So doing ``a_bzrdir.open_repository()`` 
105
 
gets you just the single physical repository, while 
106
 
``a_bzrdir.open_branch().repository`` gets one configured with a stacking. 
 
104
the repository.  So doing ``a_bzrdir.open_repository()``
 
105
gets you just the single physical repository, while
 
106
``a_bzrdir.open_branch().repository`` gets one configured with a stacking.
107
107
Therefore, to permanently change the fallback repository stored on disk,
108
 
you must use ``Branch.set_stacked_on_url``.  
 
108
you must use ``Branch.set_stacked_on_url``.
109
109
 
110
110
Changing away from an existing stacked-on URL will copy across any
111
111
necessary history so that the repository remains usable.