/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/help_topics/__init__.py

  • Committer: Martin Pool
  • Date: 2009-12-09 05:47:32 UTC
  • mfrom: (4879 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4880.
  • Revision ID: mbp@sourcefrog.net-20091209054732-7414e9uma23mfv6x
trivial merge of trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
251
251
        out += "\nSupported modifiers::\n\n  " + \
252
252
            '  '.join(decl)
253
253
 
 
254
    out += """\
 
255
\nBazaar supports all of the standard parts within the URL::
 
256
 
 
257
  <protocol>://[user[:password]@]host[:port]/[path]
 
258
 
 
259
allowing URLs such as::
 
260
 
 
261
  http://bzruser:BadPass@bzr.example.com:8080/bzr/trunk
 
262
 
 
263
For bzr+ssh:// and sftp:// URLs, Bazaar also supports paths that begin
 
264
with '~' as meaning that the rest of the path should be interpreted
 
265
relative to the remote user's home directory.  For example if the user
 
266
``remote`` has a  home directory of ``/home/remote`` on the server
 
267
shell.example.com, then::
 
268
 
 
269
  bzr+ssh://remote@shell.example.com/~/myproject/trunk
 
270
 
 
271
would refer to ``/home/remote/myproject/trunk``.
 
272
"""
 
273
 
254
274
    return out
255
275
 
256
276
 
293
313
--builtin      Use the built-in version of a command, not the plugin version.
294
314
               This does not suppress other plugin effects.
295
315
--no-plugins   Do not process any plugins.
 
316
--concurrency  Number of processes that can be run concurrently (selftest).
296
317
 
297
318
--profile      Profile execution using the hotshot profiler.
298
319
--lsprof       Profile execution using the lsprof profiler.
384
405
bind"). This will change the location that the commits are sent to. The bind
385
406
command can also be used to turn a branch into a heavy checkout. If you
386
407
would like to convert your heavy checkout into a normal branch so that every
387
 
commit is local, you can use the "unbind" command.
 
408
commit is local, you can use the "unbind" command. To see whether or not a
 
409
branch is bound or not you can use the "info" command. If the branch is bound
 
410
it will tell you the location of the bound branch.
388
411
 
389
412
Related commands::
390
413
 
398
421
              be sent to
399
422
  unbind      Turn a heavy checkout into a standalone branch so that any
400
423
              commits are only made locally
 
424
  info        Displays whether a branch is bound or unbound. If the branch is
 
425
              bound, then it will also display the location of the bound branch
401
426
"""
402
427
 
403
428
_repositories = \
561
586
BZR_HOME         Directory holding .bazaar config dir. Overrides HOME.
562
587
BZR_HOME (Win32) Directory holding bazaar config dir. Overrides APPDATA and HOME.
563
588
BZR_REMOTE_PATH  Full name of remote 'bzr' command (for bzr+ssh:// URLs).
564
 
BZR_SSH          SSH client: paramiko (default), openssh, ssh, plink.
 
589
BZR_SSH          Path to SSH client, or one of paramiko, openssh, sshcorp, plink.
565
590
BZR_LOG          Location of .bzr.log (use '/dev/null' to suppress log).
566
591
BZR_LOG (Win32)  Location of .bzr.log (use 'NUL' to suppress log).
 
592
BZR_COLUMNS      Override implicit terminal width.
 
593
BZR_CONCURRENCY  Number of processes that can be run concurrently (selftest).
567
594
================ =================================================================
568
595
"""
569
596