hmm, that workflow is what I use today (when I don't have access to trunk), do everyone do that within the Inkscape development process so all additions get peer reviewed?

--
Christoffer Holmstedt


2013/6/25 Martin Owens <doctormo@...847...0...>
On Tue, 2013-06-25 at 10:42 +0200, Christoffer Holmstedt wrote:
> 2) If I develop a new feature in a separate branch is the following
> workflow a correct way to get it into trunk?

cd ~/Projects/inkscape (or where-ever you keep your files)
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,