1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
How to install bzrtools:
All the tools are plugins, so you can install them in your plugins directory.
IT IS IMPORTANT TO MOVE/COPY THE BZRTOOLS DIRECTORY, NOT ITS CONTENTS.
$ mv ~/bzrtools ~/.bazaar/plugins/
You may have to create the plugins directory first.
Alternatively, you can install them at the system-wide plugin location:
$ sudo python2.4 setup.py install
You can test whether they are successfully installed by doing
"bzr clean-tree -h"
Optional Dependencies:
rsync - used by rspush
diff - used by shelve and unshelve
patch - used by shelve, unshelve and patch
baz and pybaz - used by baz-import
testresources - used by the baz-import test suite
Getting
If you want to use baz-import you must have PyBaz installed.
Your distro may provide PyBaz, or you can install it from source:
http://code.aaronbentley.com/pybaz/releases/pybaz-1.5.tar.gz
If you want to test your install:
/path/to/bzrtools/test.py [/path/to/bzr]
To perform a complete baz-import test, you'll also need testresources:
$ cd ~/bzrtools/external
$ bzr get http://www.robertcollins.net/unittest/testresources/
|