/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: John Arbash Meinel
  • Date: 2009-12-10 17:16:19 UTC
  • mfrom: (4884 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4889.
  • Revision ID: john@arbash-meinel.com-20091210171619-ehdcxjbl8afhq9g1
Bring in bzr.dev 4884

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
    out.append(
153
153
"""Revision Identifiers
154
154
 
155
 
A revision identifier refers to a specific state of a branch's history. It can
156
 
be a revision number, or a keyword followed by ':' and often other
157
 
parameters. Some examples of identifiers are '3', 'last:1', 'before:yesterday'
158
 
and 'submit:'.
 
155
A revision identifier refers to a specific state of a branch's history.  It
 
156
can be expressed in several ways.  It can begin with a keyword to
 
157
unambiguously specify a given lookup type; some examples are 'last:1',
 
158
'before:yesterday' and 'submit:'.
 
159
 
 
160
Alternately, it can be given without a keyword, in which case it will be
 
161
checked as a revision number, a tag, a revision id, a date specification, or a
 
162
branch specification, in that order.  For example, 'date:today' could be
 
163
written as simply 'today', though if you have a tag called 'today' that will
 
164
be found first.
159
165
 
160
166
If 'REV1' and 'REV2' are revision identifiers, then 'REV1..REV2' denotes a
161
167
revision range. Examples: '3647..3649', 'date:yesterday..-1' and
245
251
        out += "\nSupported modifiers::\n\n  " + \
246
252
            '  '.join(decl)
247
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
 
248
274
    return out
249
275
 
250
276
 
287
313
--builtin      Use the built-in version of a command, not the plugin version.
288
314
               This does not suppress other plugin effects.
289
315
--no-plugins   Do not process any plugins.
 
316
--concurrency  Number of processes that can be run concurrently (selftest).
290
317
 
291
318
--profile      Profile execution using the hotshot profiler.
292
319
--lsprof       Profile execution using the lsprof profiler.
378
405
bind"). This will change the location that the commits are sent to. The bind
379
406
command can also be used to turn a branch into a heavy checkout. If you
380
407
would like to convert your heavy checkout into a normal branch so that every
381
 
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.
382
411
 
383
412
Related commands::
384
413
 
392
421
              be sent to
393
422
  unbind      Turn a heavy checkout into a standalone branch so that any
394
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
395
426
"""
396
427
 
397
428
_repositories = \
555
586
BZR_HOME         Directory holding .bazaar config dir. Overrides HOME.
556
587
BZR_HOME (Win32) Directory holding bazaar config dir. Overrides APPDATA and HOME.
557
588
BZR_REMOTE_PATH  Full name of remote 'bzr' command (for bzr+ssh:// URLs).
558
 
BZR_SSH          SSH client: paramiko (default), openssh, ssh, plink.
 
589
BZR_SSH          Path to SSH client, or one of paramiko, openssh, sshcorp, plink.
559
590
BZR_LOG          Location of .bzr.log (use '/dev/null' to suppress log).
560
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).
561
594
================ =================================================================
562
595
"""
563
596