/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 doc/en/user-guide/entering_commands.txt

  • Committer: Vincent Ladeuil
  • Date: 2007-11-24 14:20:59 UTC
  • mto: (3928.1.1 bzr.integration)
  • mto: This revision was merged to the branch mainline in revision 3929.
  • Revision ID: v.ladeuil+lp@free.fr-20071124142059-2114qtsgfdv8g9p1
Ssl files needed for the test https server.

* bzrlib/tests/ssl_certs/create_ssls.py: 
Script to create the ssl keys and certificates.

* bzrlib/tests/ssl_certs/server.crt: 
Server certificate signed by the certificate authority.

* bzrlib/tests/ssl_certs/server.csr: 
Server certificate signing request.

* bzrlib/tests/ssl_certs/server_without_pass.key: 
Server key usable without password.

* bzrlib/tests/ssl_certs/server_with_pass.key: 
Server key.

* bzrlib/tests/ssl_certs/ca.key: 
Certificate authority private key.

* bzrlib/tests/ssl_certs/ca.crt: 
Certificate authority certificate.

* bzrlib/tests/ssl_certs/__init__.py: 
Provide access to ssl files (keys and certificates). 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Entering commands
2
 
=================
3
 
 
4
 
User interfaces
5
 
---------------
6
 
 
7
 
There are numerous user interfaces available for Bazaar.
8
 
The core package provides a command line tool called **bzr** and
9
 
graphical user interfaces (GUIs) are available as plug-ins.
10
 
 
11
 
Using bzr
12
 
---------
13
 
 
14
 
The syntax is::
15
 
 
16
 
  bzr [global-options] command [options and arguments]
17
 
 
18
 
Global options affect how Bazaar operates and can appear either
19
 
before or after ``command``. Command specific options must appear
20
 
after the command but may be given either before, during or after any
21
 
command-specific arguments.
22
 
 
23
 
Common options
24
 
--------------
25
 
 
26
 
Some options are legal for all commands as shown below.
27
 
 
28
 
  ==========  =========  =================
29
 
  Short form  Long form  Description
30
 
  ==========  =========  =================
31
 
  -h          --help     get help
32
 
  -v          --verbose  be more verbose
33
 
  -q          --quiet    be more quiet
34
 
  ==========  =========  =================
35
 
 
36
 
Quiet mode implies that only errors and warnings are displayed.
37
 
This can be useful in scripts.
38
 
 
39
 
Note: Most commands typically only support one level of verbosity though
40
 
that may change in the future. To ask for a higher level of verbosity,
41
 
simply specify the -v option multiple times.