~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/HACKING.txt

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-08-17 08:47:32 UTC
  • mfrom: (5377.2.1 merge-2.2-into-devel)
  • Revision ID: pqm@pqm.ubuntu.com-20100817084732-nqa09at3c7h0wb7u
(spiv) Merge lp:bzr/2.2 into lp:bzr, including fixes for #192859,
        #224373, #300062, #585667, #614404, #617503.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
Bazaar Development in a Nutshell
74
74
================================
75
75
 
76
 
.. was from bazaar-vcs.org/BzrGivingBack
 
76
.. was from http://wiki.bazaar.canonical.com/BzrGivingBack
77
77
 
78
78
One of the fun things about working on a version control system like Bazaar is
79
79
that the users have a high level of proficiency in contributing back into
89
89
 
90
90
 $ bzr init-repo ~/bzr
91
91
 $ cd ~/bzr
92
 
 $ bzr branch http://bazaar-vcs.org/bzr/bzr.dev/ bzr.dev
 
92
 $ bzr branch lp:bzr bzr.dev
93
93
 
94
94
Now make your own branch::
95
95
 
224
224
* create a local copy of the main development branch (bzr.dev) by using
225
225
  this command::
226
226
 
227
 
    bzr branch http://bazaar-vcs.org/bzr/bzr.dev/ bzr.dev
 
227
    bzr branch lp:bzr bzr.dev
228
228
 
229
229
* keep your copy of bzr.dev pristine (by not developing in it) and keep
230
230
  it up to date (by using bzr pull)
242
242
Navigating the Code Base
243
243
========================
244
244
 
245
 
.. Was at <http://bazaar-vcs.org/NewDeveloperIntroduction>
 
245
.. Was at <http://wiki.bazaar.canonical.com/NewDeveloperIntroduction>
246
246
 
247
247
Some of the key files in this directory are:
248
248