~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: 2010-12-10 15:01:44 UTC
  • mfrom: (5561.1.2 tweak-revert-help)
  • Revision ID: pqm@pqm.ubuntu.com-20101210150144-soij444ebu0ksoxu
(vila) Tweak 'revert' help. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4208
4208
    last committed revision is used.
4209
4209
 
4210
4210
    To remove only some changes, without reverting to a prior version, use
4211
 
    merge instead.  For example, "merge . --revision -2..-3" will remove the
4212
 
    changes introduced by -2, without affecting the changes introduced by -1.
4213
 
    Or to remove certain changes on a hunk-by-hunk basis, see the Shelf plugin.
 
4211
    merge instead.  For example, "merge . -r -2..-3" (don't forget the ".")
 
4212
    will remove the changes introduced by the second last commit (-2), without
 
4213
    affecting the changes introduced by the last commit (-1).  To remove
 
4214
    certain changes on a hunk-by-hunk basis, see the shelve command.
4214
4215
 
4215
4216
    By default, any files that have been manually changed will be backed up
4216
4217
    first.  (Files changed only by merge are not backed up.)  Backup files have
4246
4247
    target branches.
4247
4248
    """
4248
4249
 
4249
 
    _see_also = ['cat', 'export']
 
4250
    _see_also = ['cat', 'export', 'merge', 'shelve']
4250
4251
    takes_options = [
4251
4252
        'revision',
4252
4253
        Option('no-backup', "Do not save backups of reverted files."),