~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics.py

Merged bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
http://bazaar-vcs.org/
106
106
 
107
107
Basic commands:
108
 
 
109
108
  bzr init           makes this directory a versioned branch
110
109
  bzr branch         make a copy of another branch
111
110
 
128
127
"""
129
128
 
130
129
 
 
130
_global_options =\
 
131
"""Global Options
 
132
 
 
133
These options may be used with any command, and may appear in front of any
 
134
command.  (e.g. "bzr --quiet help").
 
135
 
 
136
--quiet        Suppress informational output; only print errors and warnings
 
137
--version      Print the version number
 
138
 
 
139
--no-aliases   Do not process command aliases when running this command
 
140
--builtin      Use the built-in version of a command, not the plugin version.
 
141
               This does not suppress other plugin effects
 
142
--no-plugins   Do not process any plugins
 
143
 
 
144
-Derror        Instead of normal error handling, always print a traceback on
 
145
               error.
 
146
--profile      Profile execution using the hotshot profiler
 
147
--lsprof       Profile execution using the lsprof profiler
 
148
--lsprof-file  Profile execution using the lsprof profiler, and write the
 
149
               results to a specified file.
 
150
 
 
151
Note: --version must be supplied before any command.
 
152
"""
 
153
 
 
154
 
131
155
topic_registry.register("revisionspec", _help_on_revisionspec,
132
156
                        "Explain how to use --revision")
133
157
topic_registry.register('basic', _basic_help, "Basic commands")
136
160
    from bzrlib import bzrdir
137
161
    return bzrdir.format_registry.help_topic(topic)
138
162
topic_registry.register('formats', get_format_topic, 'Directory formats')
 
163
topic_registry.register('global-options', _global_options,
 
164
                        'Options that can be used with any command')