/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/development-repo.txt

  • Committer: Jelmer Vernooij
  • Date: 2019-06-03 23:48:08 UTC
  • mfrom: (7316 work)
  • mto: This revision was merged to the branch mainline in revision 7328.
  • Revision ID: jelmer@jelmer.uk-20190603234808-15yk5c7054tj8e2b
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
for branches, you can make it a ``development`` repository like this::
90
90
 
91
91
  cd my-repo
92
 
  bzr init-shared-repo --development .
 
92
  bzr init-repo --development .
93
93
  cd my-stuff
94
94
  bzr init
95
95
  bzr add
96
96
  bzr commit -m "initial import"
97
97
 
98
98
In other words, use the normal sequence of commands but add the
99
 
``--development`` option to the ``init-shared-repo`` command.
 
99
``--development`` option to the ``init-repo`` command.
100
100
 
101
101
Upgrading an existing branch or repository to development
102
102
---------------------------------------------------------
141
141
Here are the commands for the shared repository approach::
142
142
 
143
143
  cd my-repo
144
 
  bzr init-shared-repo --development .
 
144
  bzr init-repo --development .
145
145
  bzr branch my-source-branch my-new-branch
146
146
  cd my-new-branch
147
147