0

When dealing with git repositories I use git clone --mirror <URL>; git bundle create <file> --all to create a backup clone of the repository in a single file. In there an equivalent way on bazaar?

1 Answers1

0

The easiest way is to clone the branch, then run:

bzr bundle -r0..-1 .

inside of it.

jelmer
  • 2,405
  • 14
  • 27