~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/mini-tutorial/index.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:
116
116
 
117
117
Commit your work to the Bazaar branch::
118
118
 
119
 
  $ bzr commit -m 'Added first line of text'
 
119
  $ bzr commit -m "Added first line of text"
120
120
  Committed revision 2.
121
121
 
122
122
 
235
235
If you're happy with the changes, you can commit them to your personal
236
236
branch::
237
237
 
238
 
  $ bzr commit -m 'Merge from main branch'
 
238
  $ bzr commit -m "Merge from main branch"
239
239
  Committed revision 295.
240
240
 
241
241