Recommended workspace layout with Bazaar?

That should work fine with Bazaar. Eg. : my-project (Bazaar shared repository1) + trunk (you can use this for dev if you like) + branches (normal directory) + v1 (branch for a specific version) + v2 + stable (push the stable stuff in here) You can use whatever directory structure that you like, but using the svn layout helps to make things consistent for others on your project that have worked with svn With Bazaar like with Mercurial you don't really need branches for each release because if you release off of trunk or stable then you can just tag it which basically sets a pointer to the revision.

Although it is handy to keep a branch per series onto which you can push minor bug fixes to be released as part of the next bugfix release for that series 1 Make the base directory for your project a Bazaar shared repository, so that each branch does not keep a copy of the revision history but in stead store all the history in the repository. You can create a Bazaar repository with bzr init-repo /path/to/my-project which will create the directory for you too. All branches pushed or branched under that directory will automatically use the shared repository.

That should work fine with Bazaar. Eg. : my-project (Bazaar shared repository1) + trunk (you can use this for dev if you like) + branches (normal directory) + v1 (branch for a specific version) + v2 + stable (push the stable stuff in here) You can use whatever directory structure that you like, but using the svn layout helps to make things consistent for others on your project that have worked with svn.

With Bazaar like with Mercurial you don't really need branches for each release because if you release off of trunk or stable then you can just tag it which basically sets a pointer to the revision. Although it is handy to keep a branch per series onto which you can push minor bug fixes to be released as part of the next bugfix release for that series. 1 Make the base directory for your project a Bazaar shared repository, so that each branch does not keep a copy of the revision history but in stead store all the history in the repository.

You can create a Bazaar repository with bzr init-repo /path/to/my-project which will create the directory for you too. All branches pushed or branched under that directory will automatically use the shared repository.

You can also read the official Bazaar documentation on organizing branches and advanced shared repository layouts.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions