~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/setting_up_email.txt

[merge] bzr.dev 1841

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
    % bzr whoami
33
33
    Joe Cool <joe@example.com>
 
34
    
 
35
Setting email via the 'whoami' command
 
36
======================================
 
37
You can use the whoami command to set your email globally::
 
38
 
 
39
    % bzr whoami 'Joe Cool <joe@example.com>'
 
40
 
 
41
or only for the current branch::
 
42
 
 
43
    % bzr whoami --branch 'Joe Cool <joe@example.com>'
 
44
 
 
45
These modify your global bazaar.conf or branch branch.conf file, respectively.
34
46
 
35
47
Setting email via default ini file
36
48
==================================
37
 
The first method is using the default ini file.  To use the default ini
38
 
method, create the file `$HOME/.bazaar/bazaar.conf` (on Windows this is
39
 
`%APPDATA%\bazaar\2.0\bazaar.conf`) and set an email address as shown
40
 
below.  Please note that the word DEFAULT is case sensitive, and must be in
41
 
upper-case.::
 
49
To use the default ini file, create the file `$HOME/.bazaar/bazaar.conf` (on
 
50
Windows this is `%APPDATA%\bazaar\2.0\bazaar.conf`) and set an email address
 
51
as shown below.  Please note that the word DEFAULT is case sensitive, and
 
52
must be in upper-case.::
42
53
 
43
54
    [DEFAULT]
44
55
    email=Your Name <name@isp.com>