On Tue, 2013-06-25 at 10:42 +0200, Christoffer Holmstedt wrote:cd ~/Projects/inkscape (or where-ever you keep your files)
> 2) If I develop a new feature in a separate branch is the following
> workflow a correct way to get it into trunk?
bzr branch trunk myproject (if you have trunk checked out)
bzr branch lp:inkscape myproject (if you don't)
cd myproject
.. Change files for project here ...
bzr commit -m "message"
bzr push lp:~username/inkscape/myprojectname
Then you can request your merge through the launchpad website.
Martin,