~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tutorial.txt

Minor fixes to tutorial

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
each author that is globally unique.  Most people already have one of
39
39
these: an email address.
40
40
 
41
 
[after 0.0.4] To tell bzr which email address to use, put it in the file
 
41
To tell bzr which email address to use, three options exist:
 
42
 
 
43
  * Set $EMAIL or $BZREMAIL to the email address that you would like
 
44
 
 
45
  * Add the following to ~/.bazaar/bazaar.conf :
 
46
     [DEFAULT]
 
47
     email=Your Name <name@isp.com>
 
48
 
 
49
  * On a Brancy by branch basis by adding to ~/.bazaar/branches.conf:
 
50
     [/the/location/for/a/branch]
 
51
     email=Your Name <name@isp.com>
 
52
 
42
53
``$HOME/.bzr.conf/email``, or the environment variable ``$BZREMAIL``.
43
54
If neither of these are set, bzr will use the ``$EMAIL``
44
55
variable, or use your username and hostname.
48
59
 
49
60
  % bzr whoami
50
61
 
51
 
Some people want to avoid sharing their email address so as not to
52
 
get spam.  bzr will never
53
 
disclose your email address unless you tell it to by publishing an
54
 
archive or transmitting a changeset.  It's recommended that you do use
55
 
a real address, so that people can contact you about your work, but
56
 
it's not required.  You can use an address which is obfuscated, which
57
 
bounces, or which goes through an anti-spam service such as spamgourmet.com.
 
62
Some people want to avoid sharing their email address so as not to get
 
63
spam.  bzr will never disclose your email address unless you tell it to by
 
64
publishing an archive or transmitting a changeset.  It's recommended that
 
65
you do use a real address, so that people can contact you about your work,
 
66
but it's not required.  You can use an address which is obfuscated, which
 
67
bounces, or which goes through an anti-spam service such as
 
68
spamgourmet.com.
58
69
 
59
70
 
60
71