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?
Asked
Active
Viewed 30 times
0
1 Answers
0
The easiest way is to clone the branch, then run:
bzr bundle -r0..-1 .
inside of it.

jelmer
- 2,405
- 14
- 27