~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-09-04 02:41:08 UTC
  • mfrom: (2792.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070904024108-wogizoajm6k1ba6w
Add short options to status to assist migrating svn users (Daniel Watkins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
    To see ignored files use 'bzr ignored'.  For details on the
153
153
    changes to file texts, use 'bzr diff'.
154
154
    
155
 
    --short gives a status flags for each item, similar to the SVN's status
156
 
    command.
 
155
    Note that --short or -S gives status flags for each item, similar
 
156
    to Subversion's status command. To get output similar to svn -q,
 
157
    use bzr -SV.
157
158
 
158
159
    If no arguments are specified, the status of the entire working
159
160
    directory is shown.  Otherwise, only the status of the specified
168
169
    
169
170
    takes_args = ['file*']
170
171
    takes_options = ['show-ids', 'revision', 'change',
171
 
                     Option('short', help='Give short SVN-style status lines.'),
172
 
                     Option('versioned', help='Only show versioned files.')]
 
172
                     Option('short', help='Use short status indicators.',
 
173
                            short_name='S'),
 
174
                     Option('versioned', help='Only show versioned files.',
 
175
                            short_name='V')
 
176
                     ]
173
177
    aliases = ['st', 'stat']
174
178
 
175
179
    encoding_type = 'replace'