~jelmer/brz/win-symlink-warning

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Marius Kruger
  • Date: 2010-07-10 21:28:56 UTC
  • mto: (5384.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5385.
  • Revision ID: marius.kruger@enerweb.co.za-20100710212856-uq4ji3go0u5se7hx
* Update documentation
* add NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1505
1505
class cmd_remove(Command):
1506
1506
    __doc__ = """Remove files or directories.
1507
1507
 
1508
 
    This makes bzr stop tracking changes to the specified files. bzr will delete
1509
 
    them if they can easily be recovered using revert. If no options or
1510
 
    parameters are given bzr will scan for files that are being tracked by bzr
1511
 
    but missing in your tree and stop tracking them for you.
 
1508
    This makes Bazaar stop tracking changes to the specified files. Bazaar will
 
1509
    delete them if they can easily be recovered using revert otherwise they
 
1510
    will be backed up (adding an extention of the form .~#~). If no options or
 
1511
    parameters are given Bazaar will scan for files that are being tracked by
 
1512
    Bazaar but missing in your tree and stop tracking them for you.
1512
1513
    """
1513
1514
    takes_args = ['file*']
1514
1515
    takes_options = ['verbose',
1516
1517
        RegistryOption.from_kwargs('file-deletion-strategy',
1517
1518
            'The file deletion mode to be used.',
1518
1519
            title='Deletion Strategy', value_switches=True, enum_switch=False,
1519
 
            safe='Only delete files if they can be'
1520
 
                 ' safely recovered (default).',
 
1520
            safe='Backup changed files (default).',
1521
1521
            keep='Delete from bzr but leave the working copy.',
1522
1522
            force='Delete all the specified files, even if they can not be '
1523
1523
                'recovered and even if they are non-empty directories.')]