/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/en/configuration.txt

  • Committer: Jelmer Vernooij
  • Date: 2010-03-22 13:59:33 UTC
  • mfrom: (5105 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5106.
  • Revision ID: jelmer@samba.org-20100322135933-7i7vyau8mvjoqvpf
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
used literally, they will be substituted by the corresponding,
99
99
platform specific, values.
100
100
 
101
 
Examples:
102
 
^^^^^^^^^
103
 
 
104
 
The examples below uses ':' as the separator, windows users
 
101
The examples below use ':' as the separator, windows users
105
102
should use ';'.
106
103
 
107
 
Overriding the default user plugin directory:
108
 
``BZR_PLUGIN_PATH='/path/to/my/other/plugins'``
109
 
 
110
 
Disabling the site directory while retaining the user directory:
111
 
``BZR_PLUGIN_PATH='-site:+user'``
112
 
 
113
 
Disabling all plugins (better achieved with --no-plugins):
114
 
``BZR_PLUGIN_PATH='-user:-core:-site'``
115
 
 
116
 
Overriding the default site plugin directory:
117
 
``BZR_PLUGIN_PATH='/path/to/my/site/plugins:-site':+user``
118
 
 
 
104
Overriding the default user plugin directory::
 
105
 
 
106
  BZR_PLUGIN_PATH='/path/to/my/other/plugins'
 
107
 
 
108
Disabling the site directory while retaining the user directory::
 
109
 
 
110
  BZR_PLUGIN_PATH='-site:+user'
 
111
 
 
112
Disabling all plugins (better achieved with --no-plugins)::
 
113
 
 
114
  BZR_PLUGIN_PATH='-user:-core:-site'
 
115
 
 
116
Overriding the default site plugin directory::
 
117
 
 
118
  BZR_PLUGIN_PATH='/path/to/my/site/plugins:-site':+user
 
119
 
 
120
BZR_DISABLE_PLUGINS
 
121
~~~~~~~~~~~~~~~~~~~
 
122
 
 
123
Under special circumstances, it's better to disable a plugin (or
 
124
several) rather than uninstalling them completely. Such plugins
 
125
can be specified in the ``BZR_DISABLE_PLUGINS`` environment
 
126
variable.
 
127
 
 
128
In that case, ``bzr`` will stop loading the specified plugins and
 
129
will raise an import error if they are explicitly imported (by
 
130
another plugin that depends on them for example).
 
131
 
 
132
Disabling ``myplugin`` and ``yourplugin`` is achieved by::
 
133
 
 
134
  BZR_DISABLE_PLUGINS='myplugin:yourplugin'
119
135
 
120
136
 
121
137
BZRPATH