Alexey Romanov
Alexey Romanov

Reputation: 170805

Tracking a bzr repository as a Git submodule

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?

Upvotes: 8

Views: 709

Answers (1)

artagnon
artagnon

Reputation: 3719

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.

Upvotes: 2

Related Questions