~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/tutorial.txt

[merge] bzr.dev 1841

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
address by looking up your username and hostname. If you don't like the
118
118
guess that Bazaar-NG makes, then three options exist:
119
119
 
 
120
 1. Set an email address via ``bzr whoami``.  This is the simplest way.
 
121
 To set a global identity, use::
 
122
 
 
123
     % bzr whoami 'Your Name <email@example.com>'
 
124
 
 
125
 If you'd like to use a different address for a specific branch, enter
 
126
 the branch folder and use::
 
127
 
 
128
     % bzr whoami --branch 'Your Name <email@example.com>'
 
129
 
120
130
 1. Setting the email address in the
121
131
 ``~/.bazaar/bazaar.conf`` by adding the following lines. Please note that
122
132
 ``[DEFAULT]`` is case sensitive::
124
134
    [DEFAULT]
125
135
    email= Your Name <email@isp.com>
126
136
 
127
 
 1. Override the previous setting on a
128
 
 branch by branch basis by creating a branch section in
129
 
 ``~/.bazaar/locations.conf`` by adding the following lines::
 
137
 As above, you can override this settings on a branch by branch basis by
 
138
 creating a branch section in ``~/.bazaar/locations.conf`` and adding the
 
139
 following lines::
130
140
 
131
141
    [/the/directory/to/the/branch]
132
142
    email=Your Name <email@isp.com>