~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/tutorials/using_bazaar_with_launchpad.txt

(vila) Fix bzrlib.tests.test_gpg.TestVerify.test_verify_revoked_signature
 with recent versions of gpg. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
* it models relationships between many of things tracked, e.g.
101
101
  source code branches can be associated with bug fixes
102
102
 
103
 
* as well are managing historical knowledge,
 
103
* as well as managing historical knowledge,
104
104
  it supports future development planning and tracking by providing
105
105
  features such as roadmaps, milestones and blueprints
106
106
 
244
244
quality standards.
245
245
 
246
246
 
 
247
Package source branches
 
248
-----------------------
 
249
 
 
250
When `maintaining packages for Ubuntu using Bazaar`_ you can easily access the
 
251
package's source branch on Launchpad.  The package's source branch in the
 
252
current (default) series can be downloaded like this::
 
253
 
 
254
  bzr branch ubuntu:package
 
255
 
 
256
where *package* is the name of the Ubuntu package you want to access.  To
 
257
download the package branch for a specific series in Ubuntu (e.g. Maverick or
 
258
Lucid), use this::
 
259
 
 
260
  bzr branch ubuntu:maverick/package
 
261
 
 
262
Ubuntu distroseries can also be abbreviated to just their first letter.  For
 
263
example, the above could also be written::
 
264
 
 
265
  bzr branch ubuntu:m/package
 
266
 
 
267
You can also download the package source branch from Launchpad for several
 
268
Debian series.  The default series can be downloaded like this::
 
269
 
 
270
  bzr branch debianlp:package
 
271
 
 
272
and a specific series can be downloaded like this::
 
273
 
 
274
  bzr branch debianlp:lenny/package
 
275
 
 
276
Note that the ``debianlp:`` scheme access the Debian source branch for a
 
277
package from Launchpad only.
 
278
 
 
279
.. _`maintaining packages for Ubuntu using Bazaar`: https://wiki.ubuntu.com/DistributedDevelopment
 
280
 
 
281
 
247
282
Linking branches using Launchpad
248
283
================================
249
284