~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/user-guide/configuring_bazaar.txt

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-16 17:33:27 UTC
  • mfrom: (5755.2.10 2.4-max-entries-gc-602614)
  • Revision ID: pqm@pqm.ubuntu.com-20110516173327-5ehst0ttceohsf5w
(jameinel) Add bzr.groupcompress.max_bytes_to_index to limit peak memory
 when delta-compressing large files (bug #602614) (John A Meinel)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
Using a network proxy
20
20
---------------------
21
21
 
22
 
If your network requires that you use an http proxy for outbound
 
22
If your network requires that you use an HTTP proxy for outbound
23
23
connections, you must set the ``http_proxy`` variable.  If the proxy is
24
24
also required for https connections, you need to set ``https_proxy`` too.
25
25
If you need these and don't have them set, you may find that connections
37
37
which shouldn't be reached by the proxy.  (See
38
38
<http://docs.python.org/library/urllib.html> for more details.)
39
39
 
 
40
Various ways to configure
 
41
-------------------------
 
42
 
 
43
As shown in the example above, there are various ways to
 
44
configure Bazaar, they all share some common properties though.
 
45
An option has:
 
46
 
 
47
- a name which is generally a valid python identifier,
 
48
 
 
49
- a value which is a string. In some cases, Bazaar will be able
 
50
  to recognize special values like 'True', 'False' to infer a
 
51
  boolean type, but basically, as a user, you will always specify
 
52
  a value as a string.
 
53
 
 
54
Options are grouped in various contexts so the option name
 
55
uniquely identifies it in this context. When needed, options can
 
56
be made persistent by recording them in a configuration file.
 
57
 
40
58
 
41
59
Configuration files
42
60
-------------------
66
84
  email = Your Name <email@example.com>
67
85
 
68
86
For further details on the syntax and configuration settings supported, see
69
 
`Configuration Settings <../user-reference/configuration-help.html>`_
 
87
`Configuration Settings <../user-reference/index.html#configuration-settings>`_
70
88
in the Bazaar User Reference.
71
89
 
72
90
 
 
91
Looking at the active configuration
 
92
-----------------------------------
 
93
 
 
94
To look at all the currently defined options, you can use the following
 
95
command::
 
96
 
 
97
  bzr config
 
98
 
 
99
``bzr`` implements some rules to decide where to get the value of a
 
100
configuration option.
 
101
 
 
102
The current policy is to examine the existing configurations files in a
 
103
given order for matching definitions.
 
104
 
 
105
  * ``locations.conf`` is searched first for a section whose name matches the
 
106
    location considered (working tree, branch or remote branch),
 
107
 
 
108
  * the current ``branch.conf`` is searched next,
 
109
 
 
110
  * ``bazaar.conf`` is searched next,
 
111
 
 
112
  * finally, some options can have default values generally defined in the
 
113
    code itself and not displayed by ``bzr config`` (see `Configuration
 
114
    Settings <../user-reference/index.html#configuration-settings>`_).
 
115
 
 
116
This is better understood by using ```bzr config`` with no arguments, which
 
117
will display some output of the form::
 
118
 
 
119
  locations:
 
120
    post_commit_to = commits@example.com
 
121
    news_merge_files = NEWS
 
122
  branch:
 
123
    parent_location = bzr+ssh://bazaar.launchpad.net/+branch/bzr/
 
124
    nickname = config-modify
 
125
    push_location = bzr+ssh://bazaar.launchpad.net/~vila/bzr/config-modify/
 
126
  bazaar:
 
127
    debug_flags = hpss,
 
128
 
 
129
Each configuration file is associated with a given scope whose name is
 
130
displayed before each set of defined options.
 
131
 
 
132
Modifying the active configuration
 
133
----------------------------------
 
134
 
 
135
To set an option to a given value use::
 
136
 
 
137
  bzr config opt=value
 
138
 
 
139
To remove an option use::
 
140
 
 
141
  bzr config --remove opt
 
142
 
 
143
 
73
144
Rule-based preferences
74
145
----------------------
75
146
 
78
149
``BZR_HOME/rules``.
79
150
 
80
151
For further information on how rules are searched and the detailed syntax of
81
 
the relevant files, see `Rules <../user-reference/rules-help.html>`_
 
152
the relevant files, see `Rules <../user-reference/index.html#rules>`_
82
153
in the Bazaar User Reference.
 
154
 
 
155
 
 
156
Escaping command lines
 
157
----------------------
 
158
 
 
159
When you give a program name or command line in configuration, you can quote
 
160
to include special characters or whitespace.  The same rules are used across
 
161
all platforms.
 
162
 
 
163
The rules are: strings surrounded by double-quotes are interpreted as single
 
164
"words" even if they contain whitespace, and backslash may be used to quote
 
165
quotation marks.  For example::
 
166
 
 
167
    BZR_EDITOR="C:\Program Files\My Editor\myeditor.exe"