1@ECHO OFF
2
3REM    ******************************************************
4REM    **  You can change following environment variables  **
5REM    **  that affects on brz behaviour                   **
6REM    ******************************************************
7
8REM Add the Brz directory to system-wide PATH environment variable
9SET PATH=C:\Program Files\Bazaar;%PATH%
10
11REM Change next line to set-up e-mail to identify yourself in brz
12REM SET BZREMAIL=
13
14REM Change next line to specify editor to edit commit messages
15REM SET BRZ_EDITOR=
16
17REM Change next line to tell where brz should search for plugins
18REM SET BRZ_PLUGIN_PATH=
19
20REM Change next line to use another home directory with brz
21REM SET BRZ_HOME=
22
23REM Change next line to control verbosity of .brz.log
24REM SET BRZ_DEBUG=30
25
26
27REM --------------------------------------------------------------------------
28
29@ECHO ON
30@brz.exe help
31