I wonder what the difference is between
bzr checkout ./MyProject MyProject.dev
# later followed by a
cd MyProject.dev
bzr pull ../MyProject
and
bzr get ./MyProject MyProject.dev
# later followed by
cd MyProject.dev
bzr pull
As far I can tell the only difference is:
bzr getsets the pull location.bzr checkoutdoesn’t set the pull
location, so it must be specified
the first time you pull.
Are there other differences?
bzr getcreates a branch, whereasbzr checkoutcreates a checkout. With a checkout, any revisions you commit toMyProject.devwill also be committed toMyProject.For more detail, see the checkout tutorial.