/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Robert Collins
  • Date: 2009-06-22 21:55:37 UTC
  • mfrom: (4469 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4470.
  • Revision ID: robertc@robertcollins.net-20090622215537-f7kxi0tui92ysiec
Resolve NEWS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1044
1044
        if directory is None:
1045
1045
            directory = '.'
1046
1046
        # Get the source branch
1047
 
        tree, br_from = bzrdir.BzrDir.open_tree_or_branch(directory)
 
1047
        (tree, br_from,
 
1048
         _unused) = bzrdir.BzrDir.open_containing_tree_or_branch(directory)
1048
1049
        if strict is None:
1049
1050
            strict = br_from.get_config().get_user_option('push_strict')
1050
1051
            if strict is not None:
2997
2998
    The working tree and branch checks will only give output if a problem is
2998
2999
    detected. The output fields of the repository check are:
2999
3000
 
3000
 
        revisions: This is just the number of revisions checked.  It doesn't
3001
 
            indicate a problem.
3002
 
        versionedfiles: This is just the number of versionedfiles checked.  It
3003
 
            doesn't indicate a problem.
3004
 
        unreferenced ancestors: Texts that are ancestors of other texts, but
3005
 
            are not properly referenced by the revision ancestry.  This is a
3006
 
            subtle problem that Bazaar can work around.
3007
 
        unique file texts: This is the total number of unique file contents
3008
 
            seen in the checked revisions.  It does not indicate a problem.
3009
 
        repeated file texts: This is the total number of repeated texts seen
3010
 
            in the checked revisions.  Texts can be repeated when their file
3011
 
            entries are modified, but the file contents are not.  It does not
3012
 
            indicate a problem.
 
3001
    revisions
 
3002
        This is just the number of revisions checked.  It doesn't
 
3003
        indicate a problem.
 
3004
 
 
3005
    versionedfiles
 
3006
        This is just the number of versionedfiles checked.  It
 
3007
        doesn't indicate a problem.
 
3008
 
 
3009
    unreferenced ancestors
 
3010
        Texts that are ancestors of other texts, but
 
3011
        are not properly referenced by the revision ancestry.  This is a
 
3012
        subtle problem that Bazaar can work around.
 
3013
 
 
3014
    unique file texts
 
3015
        This is the total number of unique file contents
 
3016
        seen in the checked revisions.  It does not indicate a problem.
 
3017
 
 
3018
    repeated file texts
 
3019
        This is the total number of repeated texts seen
 
3020
        in the checked revisions.  Texts can be repeated when their file
 
3021
        entries are modified, but the file contents are not.  It does not
 
3022
        indicate a problem.
3013
3023
 
3014
3024
    If no restrictions are specified, all Bazaar data that is found at the given
3015
3025
    location will be checked.