I have setup Quickly with my launchpad Project
quickly configure bzr lp:~me/projectname/trunk
But when I do save
, share
or release
, no code is pushed to the repository. Is this supposed to happen? If not, what would be the correct workflow; 1) bzr push
then 2) quickly share
? Because the latter affects the files. Or should it be the other way around?
The
quickly save
command will only save (commit) your work locally.Remember you can use
quickly help <commandname>
to learn more about commands. In th current case:In order to push it to the remote project in Launchpad, you can use
bzr
directly:bzr push lp:projectname
the first time (you might have to use the--remember
option)bzr push
orbzr push :parent
Try the following: