Sophie

Sophie

distrib > Mageia > 5 > i586 > by-pkgid > 27647990744ebd9cfe32398f37f67e20 > files > 2875

bzr-2.6.0-11.1.mga5.i586.rpm

switch
======

:Purpose: Set the branch of a checkout and update.
:Usage:   bzr switch [TO_LOCATION]

:Options:
  --force               Switch even if local commits will be lost.
  -v, --verbose         Display more information.
  -q, --quiet           Only display errors and warnings.
  -d ARG, --directory=ARG
                        Branch to operate on, instead of working directory.
  --usage               Show usage message and options.
  -r ARG, --revision=ARG
                        See "help revisionspec" for details.
  -b, --create-branch   Create the target branch from this one before
                        switching to it.
  --store               Store and restore uncommitted changes in the branch.
  -h, --help            Show help message.

:Description:
  For lightweight checkouts, this changes the branch being referenced.
  For heavyweight checkouts, this checks that there are no local commits
  versus the current bound branch, then it makes the local branch a mirror
  of the new location and binds to it.
  
  In both cases, the working tree is updated and uncommitted changes
  are merged. The user can commit or revert these as they desire.
  
  Pending merges need to be committed or reverted before using switch.
  
  The path to the branch to switch to can be specified relative to the parent
  directory of the current branch. For example, if you are currently in a
  checkout of /path/to/branch, specifying 'newbranch' will find a branch at
  /path/to/newbranch.
  
  Bound branches use the nickname of its master branch unless it is set
  locally, in which case switching will update the local nickname to be
  that of the master.