Initializing a Repo?....

Asked by VcDeveloper

I'm reading the User Guide trying to understand how to start a Repo and a Project. This part I would like cleared up for me:

bzr init-repo my.repo
cd my.repo
bzr init my.main
cd my.main
hack, hack, hack
bzr add
bzr commit -m "Initial import"

In the Explorer there is only one "Init" menu. Do I use this to create both Repo and Project?

Question information

Language:
English Edit question
Status:
Solved
For:
Bazaar Explorer Edit question
Assignee:
No assignee Edit question
Solved by:
VcDeveloper
Solved:
Last query:
Last reply:
Revision history for this message
Andrew Starr-Bochicchio (andrewsomething) said :
#1

> bzr init-repo my.repo
> cd my.repo
> bzr init my.main
> cd my.main
> hack, hack, hack
> bzr add
> bzr commit -m "Initial import"

Use the init dialog and select "Feature branches" with the location
set to "/path/to/my.repo"

This will create a shared repository at:

"/path/to/my.repo"

and a branch at:

"/path/to/my.repo/trunk"

Revision history for this message
VcDeveloper (developer-gardenofedenblessing) said :
#2

Ok, so the trunk is where a put my project source code and then use the add. Ok, Thanks!