I wonder what is the difference between
bzr checkout ./MyProject MyProject.dev
cd MyProject.dev
bzr pull ../MyProject
and
bzr get ./MyProject MyProject.dev
cd MyProject.dev
bzr pull
As far as I can tell, the only difference is this:
bzr get sets the location of the pull.bzr checkout does not set the tension location, so it must be specified the first time you pull.
Are there any other differences?
source
share