user3458
user3458

Reputation:

Bazaar: moving from single-developer to an accessible repository

I've started using bazaar DVCS for a project in a single-user mode, as described in their tutorial. I would like to involve another developer in this project, but the multi-user, "brancheable" repository seems to have different structure from my little ad-hoc directory. I can't find the documentation on how to go from one to the other. Can someone help?

Upvotes: 2

Views: 319

Answers (1)

FryGuy
FryGuy

Reputation: 8744

I don't see how you managed to get something that's not branchable. It's a fundamental thing in bazaar.

Suppose you have done something like this for your code:

c:\dev> bzr init proj
c:\dev\proj> hackhackhack.bat
c:\dev\proj> bzr commit

This should be a branchable repository. i.e.

c:\dev2> bzr init-repo .
c:\dev2> bzr branch c:\dev\proj proj

You now have a branch.

If you're talking about running the built-in server, you need to do this:

c:\dev2> bzr serve

Upvotes: 4

Related Questions