/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: 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:
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