Creating a project with bazaar

A project with many branches

$ bzr init-repo projects/project
$ cd projects/project
$ bzr init trunk
$ cd trunk
[...]
(copy, edit and create the files you need)
[...]
$ bzr commit -m "Initial import."

A one branch only project

$ bzr init projects/project
$ cd projects/project
[...]
(copy, edit and create the files you need)
[...]
$ bzr commit -m "Initial import."