~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-02-08 03:10:33 UTC
  • mfrom: (2270.1.2 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070208031033-2ab8a0b14b6eaaba
(James Westby, Aaron Bentley) Improve documentation for checkouts

Show diffs side-by-side

added added

removed removed

Lines of Context:
883
883
    --basis is to speed up checking out from remote branches.  When specified, it
884
884
    uses the inventory and file contents from the basis branch in preference to the
885
885
    branch being checked out.
 
886
 
 
887
    See "help checkouts" for more information on checkouts.
886
888
    """
887
889
    takes_args = ['branch_location?', 'to_location?']
888
890
    takes_options = ['revision', # , 'basis']
2883
2885
 
2884
2886
 
2885
2887
class cmd_bind(Command):
2886
 
    """Bind the current branch to a master branch.
2887
 
 
2888
 
    After binding, commits must succeed on the master branch
2889
 
    before they are executed on the local one.
 
2888
    """Convert the current branch into a checkout of the supplied branch.
 
2889
 
 
2890
    Once converted into a checkout, commits must succeed on the master branch
 
2891
    before they will be applied to the local branch.
 
2892
 
 
2893
    See "help checkouts" for more information on checkouts.
2890
2894
    """
2891
2895
 
2892
2896
    takes_args = ['location']
2903
2907
 
2904
2908
 
2905
2909
class cmd_unbind(Command):
2906
 
    """Unbind the current branch from its master branch.
2907
 
 
2908
 
    After unbinding, the local branch is considered independent.
2909
 
    All subsequent commits will be local.
 
2910
    """Convert the current checkout into a regular branch.
 
2911
 
 
2912
    After unbinding, the local branch is considered independent and subsequent
 
2913
    commits will be local only.
 
2914
 
 
2915
    See "help checkouts" for more information on checkouts.
2910
2916
    """
2911
2917
 
2912
2918
    takes_args = []