/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: Alexander Belchenko
  • Date: 2009-09-15 07:39:18 UTC
  • mto: (4634.49.1 2.0.0-integration)
  • mto: This revision was merged to the branch mainline in revision 4705.
  • Revision ID: bialix@ukr.net-20090915073918-f1alo9bz1c5rpfsx
trivial improvement re collecting dependencies for QBzr.

It was worked before because TBZR also using win32event module, I guess.
This change important to get consistent windows installer build without TBZR (for testing new 2.0 installer).

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