Use a Launchpad project as repository for several (small) projects?

Asked by Robert Kosara

I'm still a bit new to Bazaar, but I'm really liking it. What I want to do now is set up a project on Launchpad that acts like a repository for several small projects. This is for little applets I write for my webpage, where I don't want to start a new project for every one. I would like to keep them separate if possible, so they don't have to live within the same parent directory on my computer. Is that possible? If yes, how do I do that?

Question information

Language:
English Edit question
Status:
Solved
For:
Launchpad itself Edit question
Assignee:
No assignee Edit question
Solved by:
Robert Kosara
Solved:
Last query:
Last reply:
Revision history for this message
Robert Kosara (rkosara) said :
#1

*bump* Anybody? Also, if this isn't possible or doesn't make sense in bzr, let me know ...

Revision history for this message
Jonathan Lange (jml) said :
#2

Hi Robert,

You can set up a project on Launchpad and then push a bunch of totally unrelated branches to that project. We don't recommend it, because Launchpad works best when a "project" really is a project. Another thing you can do is push branches up to your '+junk' folder. For example,

    bzr push lp:~rkosara/+junk/branch-name

will create a branch in your junk directory.

But really, none of this has anything to do with where you keep the branches on your personal computer. You can put them anywhere you like.

I hope this helps,
jml

Revision history for this message
Robert Kosara (rkosara) said :
#3

I guess I'll have to look more into how branches work in bzr, something is confusing me there. But I guess having all these independent branches also makes it harder to get the code people want and to collaborate on a single project, so perhaps I'll really make separate projects for them. I just felt that because they're rather small, it wouldn't make sense to do that.