Sophie

Sophie

distrib > Fedora > 16 > i386 > by-pkgid > a99c463cccd19ab912401d5eb4e6ee20 > files > 309

bzr-doc-2.4.2-1.fc16.noarch.rpm

missing
=======

:Purpose: Show unmerged/unpulled revisions between two branches.
:Usage:   bzr missing [OTHER_BRANCH]

:Options:
  --reverse             Reverse the order of revisions.
  --this                Same as --mine-only.
  -h, --help            Show help message.
  -q, --quiet           Only display errors and warnings.
  -d ARG, --directory=ARG
                        Branch to operate on, instead of working directory
  --other               Same as --theirs-only.
  --include-merges      Show all revisions in addition to the mainline ones.
  --mine-only           Display changes in the local branch only.
  --usage               Show usage message and options.
  --my-revision=ARG     Filter on local branch revisions (inclusive). See
                        "help revisionspec" for details.
  --show-ids            Show internal object ids.
  -r ARG, --revision=ARG
                        Filter on other branch revisions (inclusive). See
                        "help revisionspec" for details.
  --theirs-only         Display changes in the remote branch only.
  -v, --verbose         Display more information.

  Log format:
    --log-format=ARG    Use specified log format.
    --gnu-changelog     Format used by GNU ChangeLog files
    --line              Log format with one line per revision
    --long              Detailed log format
    -S, --short         Moderately short log format

:Description:
  OTHER_BRANCH may be local or remote.
  
  To filter on a range of revisions, you can use the command -r begin..end
  -r revision requests a specific revision, -r ..end or -r begin.. are
  also valid.
          

:Exit values:
    1 - some missing revisions
    0 - no missing revisions

:Examples:
    Determine the missing revisions between this and the branch at the
    remembered pull location::

        bzr missing

    Determine the missing revisions between this and another branch::

        bzr missing http://server/branch

    Determine the missing revisions up to a specific revision on the other
    branch::

        bzr missing -r ..-10

    Determine the missing revisions up to a specific revision on this
    branch::

        bzr missing --my-revision ..-10

:See also: :doc:`merge <merge-help>`, :doc:`pull <pull-help>`