~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

  • Committer: Robert Collins
  • Date: 2010-04-08 04:34:03 UTC
  • mfrom: (5138 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5139.
  • Revision ID: robertc@robertcollins.net-20100408043403-56z0d07vdqrx7f3t
Update bugfix for 528114 to trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
279
279
 
280
280
_basic_help = \
281
281
"""Bazaar %s -- a free distributed version-control tool
282
 
http://bazaar-vcs.org/
 
282
http://www.bazaar.canonical.com/
283
283
 
284
284
Basic commands:
285
285
  bzr init           makes this directory a versioned branch
406
406
end. Checkouts also work on the local file system, so that all that matters is
407
407
file permissions.
408
408
 
409
 
You can change the master of a checkout by using the "bind" command (see "help
410
 
bind"). This will change the location that the commits are sent to. The bind
411
 
command can also be used to turn a branch into a heavy checkout. If you
412
 
would like to convert your heavy checkout into a normal branch so that every
413
 
commit is local, you can use the "unbind" command. To see whether or not a
414
 
branch is bound or not you can use the "info" command. If the branch is bound
415
 
it will tell you the location of the bound branch.
 
409
You can change the master of a checkout by using the "switch" command (see
 
410
"help switch").  This will change the location that the commits are sent to.
 
411
The "bind" command can also be used to turn a normal branch into a heavy
 
412
checkout. If you would like to convert your heavy checkout into a normal
 
413
branch so that every commit is local, you can use the "unbind" command. To see
 
414
whether or not a branch is bound or not you can use the "info" command. If the
 
415
branch is bound it will tell you the location of the bound branch.
416
416
 
417
417
Related commands::
418
418
 
422
422
  commit      Make a commit that is sent to the master branch. If you have
423
423
              a heavy checkout then the --local option will commit to the
424
424
              checkout without sending the commit to the master
425
 
  bind        Change the master branch that the commits in the checkout will
 
425
  switch      Change the master branch that the commits in the checkout will
426
426
              be sent to
 
427
  bind        Turn a standalone branch into a heavy checkout so that any
 
428
              commits will be sent to the master branch
427
429
  unbind      Turn a heavy checkout into a standalone branch so that any
428
430
              commits are only made locally
429
431
  info        Displays whether a branch is bound or unbound. If the branch is