Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I export the Bazaar history of a subfolder

Tags:

bazaar

I'm coding a framework along with a project which uses this framework. The project is a Bazaar repository, with the framework in a subfolder below the project.

I want to give the framework a Bazaar repository of its own. How do I do it?

like image 790
Jrgns Avatar asked Dec 18 '22 10:12

Jrgns


1 Answers

You use the split command:

bzr split sub_folder

This creates an independant tree in the subfolder, which you can now export and work on separately.

like image 66
Jrgns Avatar answered Jan 10 '23 11:01

Jrgns