~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-05-11 06:00:08 UTC
  • Revision ID: mbp@sourcefrog.net-20050511060008-126a0efe264dff15
- doc for status command

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
class cmd_status(Command):
190
190
    """Display status summary.
191
191
 
192
 
    For each file there is a single line giving its file state and name.
193
 
    The name is that in the current revision unless it is deleted or
194
 
    missing, in which case the old name is shown.
 
192
    This reports on versioned and unknown files, reporting them
 
193
    grouped by state.  Possible states are:
 
194
 
 
195
    added
 
196
        Versioned in the working copy but not in the previous revision.
 
197
 
 
198
    removed
 
199
        Versioned in the previous revision but not versioned or deleted
 
200
        in the working copy.
 
201
 
 
202
    renamed
 
203
        Path of this file changed from the previous revision;
 
204
        the text may also have changed.  This includes files whose
 
205
        parent directory was
 
206
 
 
207
    modified
 
208
        Text has changed since the previous revision.
 
209
 
 
210
    unchanged
 
211
        Nothing about this file has changed since the
 
212
        previous revision.  Only shown with --all.
 
213
 
 
214
    unknown
 
215
        Not versioned and not matching an ignore pattern.
 
216
 
 
217
    To see ignored files use 'bzr ignored'.  For details in the
 
218
    changes to file texts, use 'bzr diff'.
195
219
    """
196
220
    takes_args = ['file*']
197
221
    takes_options = ['all', 'show-ids']