public
Description: A bidirectional Git - Bazaar gateway
Homepage:
Clone URL: git://github.com/pieter/git-bzr.git
name age message
file 0001-builtin-fast-export-Add-importing-and-exporting-of.patch Wed Jun 25 15:26:57 -0700 2008 Add external dependencies [pieter]
file README Sun Aug 17 14:28:04 -0700 2008 Update README to reflect 1.6.0 release [pieter]
file git-bzr Loading commit data...
README
git-bzr: a bidirectional git - bazaar gateway
---------

## What does it do?

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.

## How does it work?

An example session goes like this:

  $ git bzr add upstream ../bzr-branch
  $ git bzr fetch upstream
  $ git checkout -b local_branch bzr/upstream
  $ Hack hack, merge merge....
  $ git bzr push upstream

## How should I install it?

You need a new Git (v 1.6.0 or higher). If you have an older Git version, you can get git-bzr to run by applying the 
patch in this repository to your Git source code.

Furthermore, you need the Bazaar fastimport plugin. It can be found at https://launchpad.net/bzr-fastimport.

Finally, you need to install the git-bzr script, which is written in Ruby, somewhere. You will need to edit it a bit to 
make it work with your paths, as it is really unpolished and probably uses absolute pathnames.

## Why did you put this online?

I'm not really interested in working on this anymore, as it fulfills my need. However, I can understand someone else 
might want to try the same, so I put the code online to avoid double work.

## How is it licensed?

The Git patch is a derivative of the Git source and is thus licensed under Git's license (GPL v2.0 only). The Bazaar 
fastimport changes are covered under the same license as the rest of the fastimport plugin. The git-bzr script is 
licensed under the same license as Git.

## I have a question?

You can try mailing me at frimmirf@gmail.com