views:

105

answers:

1

I want to contribute actively to a project that is hosted on Launchpad. I'm much more comfortable with GitHub, and would like to continue to use it if possible. Would I be able to mirror the bzr repository on github?

If it's possible, how could I set this up?

+1  A: 

You could try some kind of git-bzr bridge like this git-bzr script:

This script allows you to add bazaar repositories as git branches in your git repository.
After that, you can fetch the Bazaar repo, make some changes, and push it back into Bazaar.

The reverse is possible, meaning you can clone a bzr repo and push to your GitHub repo with bzr-git.

VonC
That one worked well.I ended up using a bash fork of the project, to remove the ruby dependency. Thanks a lot.
Varun Madiath