0

How can I merge patches from a bzr repository hosted on launchpad into a self hosted git repository?

bzr merge lp:ubuntu/trusty-proposed/chewmail

I tryed this but it wont work because my git repo is not a bzr repository.

Thanks.

kostix
  • 51,517
  • 14
  • 93
  • 176
egoteclaier
  • 36
  • 1
  • 5
  • If `bzr` is able to to export your work as a patchset (a series of patch files) just do that and then apply them using either `git apply` or `git am`. – kostix Mar 24 '14 at 10:25

1 Answers1

0

Check the man page for git-remote-bzr.

Oh, I'm sorry, it's not from the main git package. Here's the homepage link: https://launchpad.net/bzr-git You may check if it exists in your distribution repository.

user3159253
  • 16,836
  • 3
  • 30
  • 56