~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: John Arbash Meinel
  • Date: 2007-02-07 22:51:38 UTC
  • mto: This revision was merged to the branch mainline in revision 2273.
  • Revision ID: john@arbash-meinel.com-20070207225138-tvv9jlug3ky1arbd
Tweak the help text for bind/unbind according to Robert's suggestions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2831
2831
 
2832
2832
 
2833
2833
class cmd_bind(Command):
2834
 
    """Bind the current branch to a master branch.
 
2834
    """Convert the current branch into a checkout of the supplied branch.
2835
2835
 
2836
 
    After binding, commits must succeed on the master branch
2837
 
    before they are executed on the local one, turning the current branch
2838
 
    in to a checkout of the master.
 
2836
    Once converted into a checkout, commits must succeed on the master branch
 
2837
    before they will be applied to the local branch.
2839
2838
 
2840
2839
    See "help checkouts" for more information on checkouts.
2841
2840
    """
2854
2853
 
2855
2854
 
2856
2855
class cmd_unbind(Command):
2857
 
    """Unbind the current branch from its master branch.
 
2856
    """Convert the current checkout into a regular branch.
2858
2857
 
2859
 
    After unbinding, the local branch is considered independent.
2860
 
    All subsequent commits will be local. This turns a heavy checkout into
2861
 
    a normal branch.
 
2858
    After unbinding, the local branch is considered independent and subsequent
 
2859
    commits will be local only.
2862
2860
 
2863
2861
    See "help checkouts" for more information on checkouts.
2864
2862
    """