/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/packrepo.txt

  • Committer: Jelmer Vernooij
  • Date: 2018-05-06 11:48:54 UTC
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@jelmer.uk-20180506114854-h4qd9ojaqy8wxjsd
Move .mailmap to root.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
for branches, you can make it a ``knitpack`` repository like this::
59
59
 
60
60
  cd my-repo
61
 
  bzr init-shared-repo --pack-0.92 .
 
61
  bzr init-repo --pack-0.92 .
62
62
  cd my-stuff
63
63
  bzr init
64
64
  bzr add
65
65
  bzr commit -m "initial import"
66
66
 
67
67
In other words, use the normal sequence of commands but add the
68
 
``--pack-0.92`` option to the ``init-shared-repo`` command.
 
68
``--pack-0.92`` option to the ``init-repo`` command.
69
69
 
70
70
Upgrading an existing branch or repository to knitpack format
71
71
-------------------------------------------------------------
110
110
Here are the commands for the shared repository approach::
111
111
 
112
112
  cd my-repo
113
 
  bzr init-shared-repo --pack-0.92 .
 
113
  bzr init-repo --pack-0.92 .
114
114
  bzr branch my-source-branch my-new-branch
115
115
  cd my-new-branch
116
116
 
138
138
 
139
139
If you need any help or encounter any problems, please contact the developers
140
140
via the usual ways, i.e. chat to us on IRC or send a message to our mailing
141
 
list. See https://www.breezy-vcs.org/pages/support.html for contact details.
 
141
list. See http://wiki.bazaar.canonical.com/BzrSupport for contact details.
142
142
 
143
143
 
144
144
Technical notes