~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Jelmer Vernooij
  • Date: 2006-06-13 13:24:40 UTC
  • mfrom: (1767 +trunk)
  • mto: (1769.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1770.
  • Revision ID: jelmer@samba.org-20060613132440-24e222a86f948f60
[merge] bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
in branches.conf, you specify the url of a branch and options for it.
33
33
Wildcards may be used - * and ? as normal in shell completion. Options
34
 
set in both bazaar.conf and branches.conf are overriden by the branches.conf
 
34
set in both bazaar.conf and branches.conf are overridden by the branches.conf
35
35
setting.
36
36
[/home/robertc/source]
37
37
recurse=False|True(default)
38
38
email= as above
39
 
check_signatures= as abive 
 
39
check_signatures= as above 
40
40
create_signatures= as above.
41
41
 
42
42
explanation of options
568
568
                              "a reasonable email address" % e)
569
569
    return m.group(0)
570
570
 
 
571
 
571
572
class TreeConfig(object):
572
573
    """Branch configuration data associated with its contents, not location"""
573
574
    def __init__(self, branch):