/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 __init__.py

  • Committer: Parth Malwankar
  • Date: 2010-03-11 04:21:29 UTC
  • mto: (0.40.54 grep)
  • mto: This revision was merged to the branch mainline in revision 6555.
  • Revision ID: parth.malwankar@gmail.com-20100311042129-0hfj8fodxs2zgri1
updated help text.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
 
64
64
    This command searches the specified files and revisions for a given pattern.
65
65
    The pattern is specified as a Python regular expressions[1].
66
 
    If the file name is not specified the file revisions in the current directory
67
 
    are searched. If the revision number is not specified, the latest revision is
68
 
    searched.
 
66
    If the file name is not specified, the revisions starting with the current
 
67
    directory are searched recursively. If the revision number is not specified,
 
68
    the latest revision is searched.
69
69
 
70
70
    Note that this command is different from POSIX grep in that it searches the
71
71
    revisions of the branch and not the working copy. Unversioned files and
87
87
        Option('ignore-case', short_name='i',
88
88
               help='ignore case distinctions while matching.'),
89
89
        Option('no-recurse',
90
 
               help="Don't recurse into subdirectories."),
 
90
               help="Don't recurse into subdirectories. (default is --recurse)"),
91
91
        Option('from-root',
92
92
               help='Search for pattern starting from the root of the branch. '
93
 
               '(implies --recursive)'),
 
93
               '(implies --recurse)'),
94
94
        Option('null', short_name='Z',
95
95
               help='Write an ASCII NUL (\\0) separator '
96
96
               'between output lines rather than a newline.'),
97
97
        Option('levels',
98
 
           help='Number of levels to display - 0 for all, 1 for collapsed (default).',
 
98
           help='Number of levels to display - 0 for all, 1 for collapsed (1 is default).',
99
99
           argname='N',
100
100
           type=_parse_levels),
101
101
        ]