Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 3ad95df1b9ec0c823807557dbacf5694 > files > 655

bzr-doc-2.2.4-1.fc14.noarch.rpm



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>check &mdash; Bazaar v2.2.4 documentation</title>
    <link rel="stylesheet" href="../_static/default.css" type="text/css" />
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '../',
        VERSION:     '2.2.4',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="../_static/jquery.js"></script>
    <script type="text/javascript" src="../_static/underscore.js"></script>
    <script type="text/javascript" src="../_static/doctools.js"></script>
    <link rel="shortcut icon" href="../_static/bzr.ico"/>
    <link rel="top" title="Bazaar v2.2.4 documentation" href="../index.html" />
    <link rel="up" title="Bazaar User Reference" href="index.html" />
    <link rel="next" title="checkout" href="checkout-help.html" />
    <link rel="prev" title="cat" href="cat-help.html" /> 
  </head>
  <body>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="checkout-help.html" title="checkout"
             accesskey="N">next</a></li>
        <li class="right" >
          <a href="cat-help.html" title="cat"
             accesskey="P">previous</a> |</li>
<li><a href="http://bazaar.canonical.com/">
    <img src="../_static/bzr icon 16.png" /> Home</a>&nbsp;|&nbsp;</li>
<a href="http://doc.bazaar.canonical.com/en/">Documentation</a>&nbsp;|&nbsp;</li>

        <li><a href="../index.html">Table of Contents (2.2.4)</a> &raquo;</li>

          <li><a href="index.html" accesskey="U">Bazaar User Reference</a> &raquo;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="check">
<h1>check<a class="headerlink" href="#check" title="Permalink to this headline">ΒΆ</a></h1>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field"><th class="field-name">Purpose:</th><td class="field-body"><p class="first">Validate working tree structure, branch consistency and repository history.</p>
</td>
</tr>
<tr class="field"><th class="field-name">Usage:</th><td class="field-body"><p class="first">bzr check [PATH]</p>
</td>
</tr>
<tr class="field"><th class="field-name">Options:</th><td class="field-body"><table class="first docutils option-list" frame="void" rules="none">
<col class="option" />
<col class="description" />
<tbody valign="top">
<tr><td class="option-group">
<kbd><span class="option">-v</span>, <span class="option">--verbose</span></kbd></td>
<td><p class="first last">Display more information.</p>
</td></tr>
<tr><td class="option-group">
<kbd><span class="option">--tree</span></kbd></td>
<td><p class="first last">Check the working tree related to the current directory.</p>
</td></tr>
<tr><td class="option-group">
<kbd><span class="option">-q</span>, <span class="option">--quiet</span></kbd></td>
<td><p class="first last">Only display errors and warnings.</p>
</td></tr>
<tr><td class="option-group">
<kbd><span class="option">--repo</span></kbd></td>
<td><p class="first last">Check the repository related to the current directory.</p>
</td></tr>
<tr><td class="option-group">
<kbd><span class="option">--branch</span></kbd></td>
<td><p class="first last">Check the branch related to the current directory.</p>
</td></tr>
<tr><td class="option-group">
<kbd><span class="option">--usage</span></kbd></td>
<td><p class="first last">Show usage message and options.</p>
</td></tr>
<tr><td class="option-group">
<kbd><span class="option">-h</span>, <span class="option">--help</span></kbd></td>
<td><p class="first last">Show help message.</p>
</td></tr>
</tbody>
</table>
</td>
</tr>
<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">This command checks various invariants about branch and repository storage
to detect data corruption or bzr bugs.</p>
<p>The working tree and branch checks will only give output if a problem is
detected. The output fields of the repository check are:</p>
<dl class="docutils">
<dt>revisions</dt>
<dd><p class="first last">This is just the number of revisions checked.  It doesn&#8217;t
indicate a problem.</p>
</dd>
<dt>versionedfiles</dt>
<dd><p class="first last">This is just the number of versionedfiles checked.  It
doesn&#8217;t indicate a problem.</p>
</dd>
<dt>unreferenced ancestors</dt>
<dd><p class="first last">Texts that are ancestors of other texts, but
are not properly referenced by the revision ancestry.  This is a
subtle problem that Bazaar can work around.</p>
</dd>
<dt>unique file texts</dt>
<dd><p class="first last">This is the total number of unique file contents
seen in the checked revisions.  It does not indicate a problem.</p>
</dd>
<dt>repeated file texts</dt>
<dd><p class="first last">This is the total number of repeated texts seen
in the checked revisions.  Texts can be repeated when their file
entries are modified, but the file contents are not.  It does not
indicate a problem.</p>
</dd>
</dl>
<p>If no restrictions are specified, all Bazaar data that is found at the given
location will be checked.</p>
</td>
</tr>
<tr class="field"><th class="field-name">Examples:</th><td class="field-body"><p class="first">Check the tree and branch at &#8216;foo&#8217;:</p>
<div class="highlight-python"><pre>bzr check --tree --branch foo</pre>
</div>
<p>Check only the repository at &#8216;bar&#8217;:</p>
<div class="highlight-python"><pre>bzr check --repo bar</pre>
</div>
<p>Check everything at &#8216;baz&#8217;:</p>
<div class="highlight-python"><pre>bzr check baz</pre>
</div>
</td>
</tr>
<tr class="field"><th class="field-name">See also:</th><td class="field-body"><p class="first last"><a class="reference internal" href="reconcile-help.html"><em>reconcile</em></a></p>
</td>
</tr>
</tbody>
</table>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
  <h4>Previous topic</h4>
  <p class="topless"><a href="cat-help.html"
                        title="previous chapter">cat</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="checkout-help.html"
                        title="next chapter">checkout</a></p>
  <h3>This Page</h3>
  <ul class="this-page-menu">
    <li><a href="../_sources/user-reference/check-help.txt"
           rel="nofollow">Show Source</a></li>
  </ul>
<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="../search.html" method="get">
      <input type="text" name="q" size="18" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="checkout-help.html" title="checkout"
             >next</a></li>
        <li class="right" >
          <a href="cat-help.html" title="cat"
             >previous</a> |</li>
<li><a href="http://bazaar.canonical.com/">
    <img src="../_static/bzr icon 16.png" /> Home</a>&nbsp;|&nbsp;</li>
<a href="http://doc.bazaar.canonical.com/en/">Documentation</a>&nbsp;|&nbsp;</li>

        <li><a href="../index.html">Table of Contents (2.2.4)</a> &raquo;</li>

          <li><a href="index.html" >Bazaar User Reference</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer">
        &copy; Copyright 2009, Canonical Ltd.
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.7.
    </div>
  </body>
</html>