/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 bzrlib/builtins.py

  • 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:
1255
1255
        bzr init
1256
1256
        bzr add .
1257
1257
        bzr status
1258
 
        bzr commit -m 'imported project'
 
1258
        bzr commit -m "imported project"
1259
1259
    """
1260
1260
 
1261
1261
    _see_also = ['init-repository', 'branch', 'checkout']
1915
1915
 
1916
1916
        Ignore class files in all directories::
1917
1917
 
1918
 
            bzr ignore '*.class'
1919
 
 
1920
 
        Ignore .o files under the lib directory::
1921
 
 
1922
 
            bzr ignore 'lib/**/*.o'
1923
 
 
1924
 
        Ignore .o files under the lib directory::
1925
 
 
1926
 
            bzr ignore 'RE:lib/.*\.o'
 
1918
            bzr ignore "*.class"
 
1919
 
 
1920
        Ignore .o files under the lib directory::
 
1921
 
 
1922
            bzr ignore "lib/**/*.o"
 
1923
 
 
1924
        Ignore .o files under the lib directory::
 
1925
 
 
1926
            bzr ignore "RE:lib/.*\.o"
1927
1927
    """
1928
1928
 
1929
1929
    _see_also = ['status', 'ignored']
2444
2444
 
2445
2445
        Set the current user::
2446
2446
 
2447
 
            bzr whoami 'Frank Chu <fchu@example.com>'
 
2447
            bzr whoami "Frank Chu <fchu@example.com>"
2448
2448
    """
2449
2449
    takes_options = [ Option('email',
2450
2450
                             help='Display email address only.'),