/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 doc/developers/integration.txt

  • Committer: Robert Collins
  • Date: 2009-08-26 03:20:32 UTC
  • mfrom: (4637 +trunk)
  • mto: (4634.6.2 2.0)
  • mto: This revision was merged to the branch mainline in revision 4660.
  • Revision ID: robertc@robertcollins.net-20090826032032-mx5kiog3eihaoy13
Merge and cherrypick outstanding 2.0 relevant patches from bzr.dev: Up to rev
4637, then 4639,4641,4643,4646,4649,4650,4651. (Robert Collins)

Log messages of the incorporated fixes:

revno: 4651 [merge]
  (robertc) Enable commit via record_iter_changes for specific file
        comments. (Robert Collins)

revno: 4650 [merge]
  Fix shelve on windows. (Robert Collins, #305006)

revno: 4649 [merge]
  (robertc) Make iter_changes produce output that is always safe to
        generate inventory deltas of in the same direction as the
        changes. (Robert Collins, #347649)

revno: 4646 [merge]
  (mbp) developer documentation about content filtering

revno: 4643 [merge]
  (mbp) small tweaks to release documentation

revno: 4641 [merge]
  (abentley) Shelve will not remove tree root.

revno: 4639 [merge]
  (andrew) Fix 'Revision ... not present' errors when upgrading stacked
        branches.

revno: 4637 [merge]
  Fix upgrade of branches in repositories.

revno: 4636 [merge]
  (mbp) fix crash formatting CannotBindAddress

revno: 4635 [merge]
  (robertc) Fix many locking errors on windows due to a small bug in
        merge.transform_tree. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
197
197
 
198
198
  from bzrlib import branch
199
199
 
200
 
  b = branch.Branch.open('http://bazaar.launchpad.net/~bzr-pqm/bzr/bzr.dev')
 
200
  b = branch.Branch.open('http://bazaar-vcs.org/bzr/bzr.dev')
201
201
  nb = b.bzrdir.sprout('/tmp/newBzrBranch').open_branch()
202
202
 
203
203
 
213
213
  from bzrlib import branch
214
214
 
215
215
  b1 = branch.Branch.open('file:///home/user/mybranch')
216
 
  b2 = branch.Branch.open('http://bazaar.launchpad.net/~bzr-pqm/bzr/bzr.dev')
 
216
  b2 = branch.Branch.open('http://bazaar-vcs.org/bzr/bzr.dev')
217
217
  b1.push(b2)
218
218
 
219
219
 
244
244
 
245
245
  source.create_checkout('/tmp/newBzrCheckout', None, False, accelerator_tree
246
246
 
247
 
 
 
247
==================
248
248
History Operations
249
249
==================
250
250
 
251
251
Finding the last revision number or id
252
 
--------------------------------------
 
252
======================================
253
253
 
254
254
To get the last revision number and id of a branch use::
255
255
 
263
263
 
264
264
 
265
265
Getting the list of revision ids that make up a branch
266
 
------------------------------------------------------
 
266
======================================================
267
267
 
268
268
IMPORTANT: This should be avoided wherever possible, as it scales with the
269
269
length of history::
277
277
 
278
278
 
279
279
Getting a Revision object from a revision id
280
 
--------------------------------------------
 
280
============================================
281
281
 
282
282
The Revision object has attributes like "message" to get the information
283
283
about the revision::
287
287
 
288
288
 
289
289
Accessing the files from a revision
290
 
-----------------------------------
 
290
===================================
291
291
 
292
292
To get the file contents and tree shape for a specific revision you need
293
293
a RevisionTree. These are supplied by the repository for a specific