How i can do bzr merge of a git repository into bazaar branch?

I have tried get the change of github repository to one repository bazaar,

something like this:

bzr merge [email protected]:Author/repository.git

is there any way to do this?

Upvotes: 1

Views: 107

Answers (2)

jelmer
jelmer

Reputation: 2450

You can if you have bzr-git installed. However, bzr only understands URLs, not rsync-like location identifiers. So for the location you specified, you would want to use:

bzr merge git+ssh://[email protected]/Author/repository.git

Upvotes: 1

AmanicA
AmanicA

Reputation: 5505

I'm not sure how well this will work, but maybe clone the git repository, then convert it to a bazaar repo and then merge it.

I also see there is a plugin that may help: https://github.com/trobz/git-bzr-merge "This plugin has been created to help merging GitHub OpenERP modules into Launchpad branches."

Upvotes: 1

Related Questions