Archive

Archive for the ‘bzr’ Category

Configuring a shared repository in Bazaar for users with no shell access

November 5th, 2009 pablo No comments

One of the things that stumbled me the most about bazaar is that it does not have a own authentication method. Users can access repositories through ssh, sftp, etc. While this is very usefull if everyone working on the repo has shell access to the server, it does not allow “virtual users” the way svn does. Well, not out of the box anyway… There’s always a workaround. This post tries to explain how to configure Bazaar in the centralized model and set user level permissions to the working directory.

Read more…

Categories: bzr Tags: , , , , ,

Ignored files in Bazaar in a Symfony project

October 23rd, 2009 pablo 5 comments

Recently, I’ve been doing a few projects using Symfony PHP framework and Bazaar for version control. One of the great features of Symfony is that it generates base classes automatically to interact with the database from a pre-defined schema file. While this is a great feature, every time the schema gets changed, Symfony regenerates all the files thus flagging them as modified in Bazaar. To avoid committing those files all the time, I created a .bzrignore file to ignore them and leave my repository nice and clean.

Read more…

Categories: bzr, php, symfony Tags: , , , , , ,