Notes about Bazaar
General instructions
Administration
ChristianK and WolfgangB are the administrators for the bazaar server. New accounts are created by them, when they are given the corresponding public SSH key in OpenSSH format.
Mentor should request rights to change the branch configuration by them. They will add them to the corresponding group.
Add branch specific commit rights
Mentor could add branches, the trainee is allowed to commit to. This is done with the following steps:
- If the branch does not exist yet, then create it, e.g.
bzr branch bzr+ssh://bazaar@bzr.openpetra.org:2208/openpetra/trunk bzr+ssh://bazaar@bzr.openpetra.org:2208/openpetra/dev_id_whatever
- Checkout
bzr+ssh://bazaar@bzr.openpetra.org:2208/config/
, e.g.bzr checkout bzr+ssh://bazaar@bzr.openpetra.org:2208/config/
- Edit
bazaar_acl.ini
. In the section[Trainee]
add the allowed branches comma seperated behind the username - Commit the change, e.g.
bzr commit
Now the trainee is able to commit to the branch.
Frequently asked questions
bzr: ERROR: Could not acquire lock (remote lock)
This can happen when cancelling during a commit, and probably in other situations too. You will get the error the next time your are attempting to commit.
Solution: open the command line console (eg. cmd.exe), and change into the directory of your branch, and run:
bzr break-lock
bzr: ERROR: paramiko.SSHException: lost ssh-agent
If you get such an error on Windows 7 64-bit then try to run pageant not as Administrator but as normal user.
Could not open a connection to your authentication agent
If you get such an error then please have a look here or here
bzr: ERROR: Cannot lock LockDir(...): Transport operation not possible: http does not support mkdir()
On getting such an error you've probably been trying to use something like lp:~username instead of bzr+ssh://
Solution: Execute "bzr launchpad-login <username>" on a command line.