Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tracking a bzr repository as a Git submodule

Tags:

git

github

bazaar

I have a repository on GitHub which depends on two projects which are developed in Bazaar. Currently I just download and unpack sources, but it would be nice if I could actually keep their history. Is there a simple solution for this?

like image 301
Alexey Romanov Avatar asked Jun 27 '10 08:06

Alexey Romanov


1 Answers

If you want the history to be shared between Git and Bzr, consider using a third-party bi-directional bridge between Git and Bzr. There are many like this one.

EDIT: There's now a git-remote-bzr in contrib/ of git.git. Use that.

like image 197
artagnon Avatar answered Oct 25 '22 11:10

artagnon