Sophie

Sophie

distrib > Mageia > 7 > aarch64 > by-pkgid > 7e647d9940d31b34c253e6f71c416c4b > files > 2971

bzr-2.7.0-6.mga7.aarch64.rpm

update
======

:Purpose: Update a working tree to a new revision.
:Usage:   bzr update [DIR]

:Options:
  -v, --verbose         Display more information.
  -h, --help            Show help message.
  -q, --quiet           Only display errors and warnings.
  --usage               Show usage message and options.
  --show-base           Show base revision text in conflicts.
  -r ARG, --revision=ARG
                        See "help revisionspec" for details.

:Description:
  This will perform a merge of the destination revision (the tip of the
  branch, or the specified revision) into the working tree, and then make
  that revision the basis revision for the working tree.  
  
  You can use this to visit an older revision, or to update a working tree
  that is out of date from its branch.
  
  If there are any uncommitted changes in the tree, they will be carried
  across and remain as uncommitted changes after the update.  To discard
  these changes, use 'bzr revert'.  The uncommitted changes may conflict
  with the changes brought in by the change in basis revision.
  
  If the tree's branch is bound to a master branch, bzr will also update
  the branch from the master.
  
  You cannot update just a single file or directory, because each Bazaar
  working tree has just a single basis revision.  If you want to restore a
  file that has been removed locally, use 'bzr revert' instead of 'bzr
  update'.  If you want to restore a file to its state in a previous
  revision, use 'bzr revert' with a '-r' option, or use 'bzr cat' to write
  out the old content of that file to a new location.
  
  The 'dir' argument, if given, must be the location of the root of a
  working tree to update.  By default, the working tree that contains the 
  current working directory is used.

:Aliases:  up
:See also: :doc:`pull <pull-help>`, :doc:`status-flags <status-flags-help>`, :doc:`working-trees <working-trees-help>`