Here's a short outline. Ted, please correct if I got something wrong.
a) branch-merge workflow 1. bzr branch lp:inkscape - this creates a branch of Inkscape's trunk 2. edit files 3. bzr commit - this saves the changes to the local repository 4. bzr merge - to merge your branch and the trunk in case they diverged (some changes were made to trunk since you started your work) 5. bzr commit - again, to confirm the changes from merging 6. bzr push - publishes the changes to the trunk; only works if the branches are not diverged
b) SVN style checkout - essentially the same commands as with SVN 1. bzr checkout lp:inkscape 2. edit files 3. bzr commit - this checks in the changes to the remote repository on Launchpad
All this is under the assumption that everyone who had commit access to SVN trunk will have commit access to bzr trunk on Lanchpad. If that won't be the case, then you won't be able to do 'bzr push' or 'bzr commit' into lp:inkscape - instead you'll have to publish your branch on Launchpad and request a merge.
0. bzr launchpad-login your-launchpad-username - you have to have an SSH public key registered in Launchpad in order for this to work (go to your profile page to add it) 1. bzr push lp:~your-launchpad-username/inkscape/your-branch - this publishes your branch on LP 2. Send a merge request with that URL to someone who has trunk commit access 3. That person will then write the following in a trunk checkout: 3.1. bzr merge lp:~your-launchpad-username/inkscape/your-branch - to merge your changes 3.2. bzr commit - to commit the changes from the merge
Interesting hint: if at any point in time you decide that you want to convert your branch into a checkout, you write 'bzr bind lp:inkscape' - after this, 'bzr commit' will commit directly to the trunk on Launchpad rather than your local trunk.
Note that lp:inkscape is currently out of date due to an import error, but it will be fixed after the 0.47 release. An initial version of the tutorial is here, additions very much welcome: http://wiki.inkscape.org/wiki/index.php/Working_with_Bazaar
Regards, Krzysztof