~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2010-12-20 11:57:14 UTC
  • mto: This revision was merged to the branch mainline in revision 5577.
  • Revision ID: jelmer@samba.org-20101220115714-2ru3hfappjweeg7q
Don't use no-plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
512
512
 
513
513
  checkout     Create a working tree when a branch does not have one.
514
514
  remove-tree  Removes the working tree from a branch when it is safe to do so.
515
 
  update       When a working tree is out of sync with it's associated branch
 
515
  update       When a working tree is out of sync with its associated branch
516
516
               this will update the tree to match the branch.
517
517
"""
518
518
 
591
591
_env_variables = \
592
592
"""Environment Variables
593
593
 
594
 
=================== =======================================================================
595
 
BZRPATH             Path where bzr is to look for shell plugin external commands.
 
594
=================== ===========================================================
 
595
BZRPATH             Path where bzr is to look for shell plugin external
 
596
                    commands.
596
597
BZR_EMAIL           E-Mail address of the user. Overrides EMAIL.
597
598
EMAIL               E-Mail address of the user.
598
599
BZR_EDITOR          Editor for editing commit messages. Overrides EDITOR.
601
602
BZR_DISABLE_PLUGINS Plugins that bzr should not load.
602
603
BZR_PLUGINS_AT      Plugins to load from a directory not in BZR_PLUGIN_PATH.
603
604
BZR_HOME            Directory holding .bazaar config dir. Overrides HOME.
604
 
BZR_HOME (Win32)    Directory holding bazaar config dir. Overrides APPDATA and HOME.
 
605
BZR_HOME (Win32)    Directory holding bazaar config dir. Overrides APPDATA and
 
606
                    HOME.
605
607
BZR_REMOTE_PATH     Full name of remote 'bzr' command (for bzr+ssh:// URLs).
606
 
BZR_SSH             Path to SSH client, or one of paramiko, openssh, sshcorp, plink.
 
608
BZR_SSH             Path to SSH client, or one of paramiko, openssh, sshcorp,
 
609
                    plink or lsh.
607
610
BZR_LOG             Location of .bzr.log (use '/dev/null' to suppress log).
608
611
BZR_LOG (Win32)     Location of .bzr.log (use 'NUL' to suppress log).
609
612
BZR_COLUMNS         Override implicit terminal width.
610
 
BZR_CONCURRENCY     Number of processes that can be run concurrently (selftest).
611
 
BZR_PROGRESS_BAR    Override the progress display. Values are 'none', 'dots', or 'tty'.
 
613
BZR_CONCURRENCY     Number of processes that can be run concurrently (selftest)
 
614
BZR_PROGRESS_BAR    Override the progress display. Values are 'none', 'dots',
 
615
                    or 'tty'.
612
616
BZR_PDB             Control whether to launch a debugger on error.
613
 
BZR_SIGQUIT_PDB     Control whether SIGQUIT behaves normally or invokes a breakin debugger.
614
 
=================== =======================================================================
 
617
BZR_SIGQUIT_PDB     Control whether SIGQUIT behaves normally or invokes a
 
618
                    breakin debugger.
 
619
=================== ===========================================================
615
620
"""
616
621
 
617
622