~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Jelmer Vernooij
  • Date: 2005-11-08 00:53:05 UTC
  • mto: (1185.33.3)
  • mto: This revision was merged to the branch mainline in revision 1509.
  • Revision ID: jelmer@samba.org-20051108005305-b26c6faafa3d8955
Support -r option to bzr status. The backend code already handled 
status differences between revisions, it just wasn't exposed to the user yet.
Add more extended blackbox test for 'bzr status'

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
    that revision, or between two revisions if two are provided.
107
107
    """
108
108
    
109
 
    # XXX: FIXME: bzr status should accept a -r option to show changes
110
 
    # relative to a revision, or between revisions
111
 
 
112
109
    # TODO: --no-recurse, --recurse options
113
110
    
114
111
    takes_args = ['file*']
115
 
    takes_options = ['all', 'show-ids']
 
112
    takes_options = ['all', 'show-ids', 'revision']
116
113
    aliases = ['st', 'stat']
117
114
    
118
115
    @display_command