/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: 2011-03-13 21:30:33 UTC
  • mto: This revision was merged to the branch mainline in revision 5724.
  • Revision ID: jelmer@samba.org-20110313213033-ud9t11mm8e3idtti
Add test for per-file-timestamp zipfiles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
 
91
91
As for the ``PATH`` variables, if multiple directories are
92
92
specified in ``BZR_PLUGIN_PATH`` they should be separated by the
93
 
platform specific appropriate character (':' on Unix/Linux/etc,
 
93
platform specific appropriate character (':' on Unix,
94
94
';' on windows)
95
95
 
96
96
By default if ``BZR_PLUGIN_PATH`` is set, it replaces searching
179
179
The path where Bazaar should look for shell plugin external commands.
180
180
 
181
181
 
 
182
http_proxy, https_proxy
 
183
~~~~~~~~~~~~~~~~~~~~~~~
 
184
 
 
185
Specifies the network proxy for outgoing connections, for example::
 
186
 
 
187
  http_proxy=http://proxy.example.com:3128/ 
 
188
  https_proxy=http://proxy.example.com:3128/
 
189
 
 
190
 
182
191
Configuration files
183
192
-------------------
184
193
 
185
194
Location
186
195
~~~~~~~~
187
196
 
188
 
Configuration files are located in ``$HOME/.bazaar`` on Linux/Unix and
 
197
Configuration files are located in ``$HOME/.bazaar`` on Unix and
189
198
``C:\Documents and Settings\<username>\Application Data\Bazaar\2.0`` on
190
199
Windows. (You can check the location for your system by using
191
200
``bzr version``.)
249
258
    email            = John Doe <jdoe@isp.com>
250
259
    check_signatures = require
251
260
 
 
261
A variable can reference other variables **in the same configuration file** by
 
262
enclosing them in curly brackets::
 
263
 
 
264
    my_branch_name = feature_x
 
265
    my_server      = bzr+ssh://example.com
 
266
    push_location   = {my_server}/project/{my_branch_name}
 
267
 
252
268
 
253
269
Variable policies
254
270
^^^^^^^^^^^^^^^^^
313
329
    create_signatures = always
314
330
    check_signatures  = always
315
331
 
316
 
    [http://bazaar-vcs.org/bzr/*]
 
332
    [http://example.com/bzr/*]
317
333
    check_signatures  = require
318
334
 
319
335
The authentication configuration file, authentication.conf
495
511
    whether the format deprecation warning is shown on repositories that are
496
512
    using deprecated formats.
497
513
 
 
514
default_format
 
515
~~~~~~~~~~~~~~
 
516
 
 
517
A format name for the default format used when creating branches.  See ``bzr
 
518
help formats`` for possible values.
 
519
 
 
520
 
 
521
Unicode options
 
522
---------------
 
523
 
 
524
output_encoding
 
525
~~~~~~~~~~~~~~~
 
526
 
 
527
A Python unicode encoding name for text output from bzr, such as log
 
528
information.  Values include: utf8, cp850, ascii, iso-8859-1.  The default
 
529
is the terminal encoding prefered by the operating system.
 
530
 
498
531
 
499
532
Branch type specific options
500
533
----------------------------
558
591
If present, defines the ``--strict`` option default value for checking
559
592
uncommitted changes before sending a merge directive.
560
593
 
 
594
 
 
595
External Merge Tools
 
596
--------------------
 
597
 
 
598
bzr.mergetool.<name>
 
599
~~~~~~~~~~~~~~~~~~~~
 
600
 
 
601
Defines an external merge tool called <name> with the given command-line.
 
602
Arguments containing spaces should be quoted using single or double quotes. The
 
603
executable may omit its path if it can be found on the PATH.
 
604
 
 
605
The following markers can be used in the command-line to substitute filenames
 
606
involved in the merge conflict:
 
607
 
 
608
{base}      file.BASE
 
609
{this}      file.THIS
 
610
{other}     file.OTHER
 
611
{result}    output file
 
612
{this_temp} temp copy of file.THIS, used to overwrite output file if merge
 
613
            succeeds.
 
614
 
 
615
For example:
 
616
 
 
617
  bzr.mergetool.kdiff3 = kdiff3 {base} {this} {other} -o {result}
 
618
 
 
619
bzr.default_mergetool
 
620
~~~~~~~~~~~~~~~~~
 
621
 
 
622
Specifies which external merge tool (as defined above) should be selected by
 
623
default in tools such as ``bzr qconflicts``.
 
624
 
 
625
For example:
 
626
 
 
627
  bzr.default_mergetool = kdiff3