Installation on MacOS X:

If you've installed bzr from ports:

With the latest version of macports: 
 port install bzr bzr-fastimport
 git clone git://github.com/kfish/git-bzr
 cd git-bzr
 sudo cp git-bzr /usr/bin

If you've installed bzr from the dmg on the bzr website:

  bzr branch lp:bzr-fastimport
  cd bzr-fastimport
  sudo python setup.py install
  cd .. 
  git clone git://github.com/kfish/git-bzr
  cd git-bzr
  sudo cp git-bzr /usr/bin

Installation on Ubuntu/Debian:

  apt-get install git-core bzr bzr-fastimport; 
  git clone git://github.com/kfish/git-bzr
  cd git-bzr
  sudo cp git-bzr /usr/local/bin

Using git-bzr:

An example session goes like this:

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

  $ git bzr push upstream

Wiki: GitBzrInstructions (last edited 2010-07-21 16:10:29 by nat-vlan211)