1

How can I check out only certain subfolders from a branch in Bazaar? Example:

Given the branch consisting of:

/myapp /myapp/doc /myapp/bin /my /myapp/bunch-o-crap

how do I create a versioned working copy of just

/myapp/doc /myapp/bin

1 Answers1

0

You can't.

Distributed version control software like git, mercurial and bzr do work on the complete repository as a single unit. This is required for storing the history of moved files etc properly.

johannes
  • 583