~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/user-guide/bug_trackers.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:
13
13
When you make a commit you can assiociate it with a bug by using the
14
14
``--fixes`` option of ``commit``. For example::
15
15
 
16
 
    $ bzr commit --fixes 12345 -m 'Properly close the connection on errors'
 
16
    $ bzr commit --fixes 12345 -m "Properly close the connection on errors"
17
17
 
18
18
This will set a revision property on the revision that is committed
19
19
which contains the URI at which more information on the bug can be found.