Comment 1 for bug 306394

Revision history for this message
Karl Fogel (kfogel) wrote : Re: bzr status should not ignore all other command line arguments if when passing non-existent file

I believe this is fixed now:

   $ bzr --version
   Bazaar (bzr) 1.11dev
     from bzr checkout /home/kfogel/src/bzr/bzr.dev
       revision: 3828
       revid: <email address hidden>
       branch nick: bzr.dev
     Python interpreter: /usr/bin/X11/python 2.5.2
     Python standard library: /usr/lib/python2.5
     bzrlib: /home/kfogel/src/bzr/bzr.dev/bzrlib
     Bazaar configuration: /home/kfogel/.bazaar
     Bazaar log file: /home/kfogel/.bzr.log

   Copyright 2005, 2006, 2007, 2008 Canonical Ltd.
   http://bazaar-vcs.org/

   bzr comes with ABSOLUTELY NO WARRANTY. bzr is free software, and
   you may use, modify and redistribute it under the terms of the GNU
   General Public License version 2 or later.

   $ bzr info
   Standalone tree (format: pack-0.92)
   Location:
     branch root: .

   Related branches:
     parent branch: http://bazaar-vcs.org/bzr/bzr.dev/
   $ touch unversioned_file
   $ echo "Trivial modification." >> README
   $ echo "Trivial modification." >> TODO
   $ bzr status -v -S unversioned_file README TODO
    M README
    M TODO
   ? unversioned_file
   $ # Changing the input order doesn't affect the output order:
   $ bzr status -v -S README TODO unversioned_file
    M README
    M TODO
   ? unversioned_file
   $ bzr revert README TODO
    M README
    M TODO
   $ bzr status -v -S unversioned_file README TODO
   ? unversioned_file
   $