/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 breezy/builtins.py

Update references to home location.

Merged from https://code.launchpad.net/~jelmer/brz/homedir-location/+merge/363701

Show diffs side-by-side

added added

removed removed

Lines of Context:
348
348
        Not versioned and not matching an ignore pattern.
349
349
 
350
350
    Additionally for directories, symlinks and files with a changed
351
 
    executable bit, Bazaar indicates their type using a trailing
 
351
    executable bit, Breezy indicates their type using a trailing
352
352
    character: '/', '@' or '*' respectively. These decorations can be
353
353
    disabled using the '--no-classify' option.
354
354
 
1728
1728
    If the tree's branch is bound to a master branch, brz will also update
1729
1729
    the branch from the master.
1730
1730
 
1731
 
    You cannot update just a single file or directory, because each Bazaar
 
1731
    You cannot update just a single file or directory, because each Breezy
1732
1732
    working tree has just a single basis revision.  If you want to restore a
1733
1733
    file that has been removed locally, use 'brz revert' instead of 'brz
1734
1734
    update'.  If you want to restore a file to its state in a previous
1871
1871
class cmd_remove(Command):
1872
1872
    __doc__ = """Remove files or directories.
1873
1873
 
1874
 
    This makes Bazaar stop tracking changes to the specified files. Bazaar will
 
1874
    This makes Breezy stop tracking changes to the specified files. Breezy will
1875
1875
    delete them if they can easily be recovered using revert otherwise they
1876
1876
    will be backed up (adding an extension of the form .~#~). If no options or
1877
 
    parameters are given Bazaar will scan for files that are being tracked by
1878
 
    Bazaar but missing in your tree and stop tracking them for you.
 
1877
    parameters are given Breezy will scan for files that are being tracked by
 
1878
    Breezy but missing in your tree and stop tracking them for you.
1879
1879
    """
1880
1880
    takes_args = ['file*']
1881
1881
    takes_options = ['verbose',
3091
3091
    using this command or directly by using an editor, be sure to commit
3092
3092
    it.
3093
3093
 
3094
 
    Bazaar also supports a global ignore file ~/.bazaar/ignore. On Windows
3095
 
    the global ignore file can be found in the application data directory as
3096
 
    C:\\Documents and Settings\\<user>\\Application Data\\Bazaar\\2.0\\ignore.
 
3094
    Breezy also supports a global ignore file ~/.config/breezy/ignore. On
 
3095
    Windows the global ignore file can be found in the application data
 
3096
    directory as
 
3097
    C:\\Documents and Settings\\<user>\\Application Data\\Breezy\\3.0\\ignore.
3097
3098
    Global ignores are not touched by this command. The global ignore file
3098
3099
    can be edited directly using an editor.
3099
3100
 
3732
3733
    unreferenced ancestors
3733
3734
        Texts that are ancestors of other texts, but
3734
3735
        are not properly referenced by the revision ancestry.  This is a
3735
 
        subtle problem that Bazaar can work around.
 
3736
        subtle problem that Breezy can work around.
3736
3737
 
3737
3738
    unique file texts
3738
3739
        This is the total number of unique file contents
3744
3745
        entries are modified, but the file contents are not.  It does not
3745
3746
        indicate a problem.
3746
3747
 
3747
 
    If no restrictions are specified, all Bazaar data that is found at the given
 
3748
    If no restrictions are specified, all data that is found at the given
3748
3749
    location will be checked.
3749
3750
 
3750
3751
    :Examples:
3786
3787
    __doc__ = """Upgrade a repository, branch or working tree to a newer format.
3787
3788
 
3788
3789
    When the default format has changed after a major new release of
3789
 
    Bazaar, you may be informed during certain operations that you
 
3790
    Bazaar/Breezy, you may be informed during certain operations that you
3790
3791
    should upgrade. Upgrading to a newer format may improve performance
3791
3792
    or make new features available. It may however limit interoperability
3792
 
    with older repositories or with older versions of Bazaar.
 
3793
    with older repositories or with older versions of Bazaar or Breezy.
3793
3794
 
3794
3795
    If you wish to upgrade to a particular format rather than the
3795
3796
    current default, that can be specified using the --format option.
3811
3812
    If the conversion of a branch fails, remaining branches are still
3812
3813
    tried.
3813
3814
 
3814
 
    For more information on upgrades, see the Bazaar Upgrade Guide,
 
3815
    For more information on upgrades, see the Breezy Upgrade Guide,
3815
3816
    https://www.breezy-vcs.org/doc/en/upgrade-guide/.
3816
3817
    """
3817
3818
 
4312
4313
    through OTHER, excluding BASE but including OTHER, will be merged.  If this
4313
4314
    causes some revisions to be skipped, i.e. if the destination branch does
4314
4315
    not already contain revision BASE, such a merge is commonly referred to as
4315
 
    a "cherrypick". Unlike a normal merge, Bazaar does not currently track
 
4316
    a "cherrypick". Unlike a normal merge, Breezy does not currently track
4316
4317
    cherrypicks. The changes look like a normal commit, and the history of the
4317
4318
    changes from the other branch is not stored in the commit.
4318
4319
 
5133
5134
 
5134
5135
    --verbose shows the path where each plugin is located.
5135
5136
 
5136
 
    A plugin is an external component for Bazaar that extends the
5137
 
    revision control system, by adding or replacing code in Bazaar.
 
5137
    A plugin is an external component for Breezy that extends the
 
5138
    revision control system, by adding or replacing code in Breezy.
5138
5139
    Plugins can do a variety of things, including overriding commands,
5139
5140
    adding new commands, providing additional network transports and
5140
5141
    customizing log output.
5498
5499
    :Examples:
5499
5500
        brz break-lock
5500
5501
        brz break-lock brz+ssh://example.com/brz/foo
5501
 
        brz break-lock --conf ~/.bazaar
 
5502
        brz break-lock --conf ~/.config/breezy
5502
5503
    """
5503
5504
 
5504
5505
    takes_args = ['location?']
5789
5790
    branch containing submit_branch in its ancestory without needing access to
5790
5791
    the source branch.
5791
5792
 
5792
 
    If --no-bundle is specified, then Bazaar doesn't send the contents of the
 
5793
    If --no-bundle is specified, then Breezy doesn't send the contents of the
5793
5794
    revisions, but only a structured request to merge from the
5794
5795
    public_location.  In that case the public_branch is needed and it must be
5795
5796
    up-to-date and accessible to the recipient.  The public_branch is always