/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 doc/en/user-guide/setting_up_email.txt

  • Committer: John Arbash Meinel
  • Date: 2007-11-27 19:51:08 UTC
  • mto: This revision was merged to the branch mainline in revision 3037.
  • Revision ID: john@arbash-meinel.com-20071127195108-k38ek6apyhxw75fv
Address bug #59302 and fix documentation that uses single quotes.
Windows doesn't recognize ' as a quote character.
So documentation should use: bzr foo -m "text" not bzr foo -m 'text'
This patch is just a quick scan of documents for bzr.*', which should
catch most of it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
======================================
50
50
You can use the whoami command to set your email globally::
51
51
 
52
 
    % bzr whoami 'Joe Cool <joe@example.com>'
 
52
    % bzr whoami "Joe Cool <joe@example.com>"
53
53
 
54
54
or only for the current branch::
55
55
 
56
 
    % bzr whoami --branch 'Joe Cool <joe@example.com>'
 
56
    % bzr whoami --branch "Joe Cool <joe@example.com>"
57
57
 
58
58
These modify your global ``bazaar.conf`` or branch ``branch.conf`` file, respectively.
59
59