/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/using_bazaar.txt

  • Committer: Ian Clatworthy
  • Date: 2007-11-21 07:39:16 UTC
  • mto: (3054.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3055.
  • Revision ID: ian.clatworthy@internode.on.net-20071121073916-qlpp5gvcf0639r38
1st cut at the 'Personal version control' chapter

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Using Bazaar
 
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
Getting help
 
24
------------
 
25
 
 
26
Bazaar comes with a built-in on-line help system. To see the list of topics,
 
27
the command is::
 
28
 
 
29
  bzr help
 
30
 
 
31
To see the list of commands, the command is::
 
32
 
 
33
  bzr help commands
 
34
 
 
35
To get help on topic xxx or command xxx, the command is::
 
36
 
 
37
  bzr help xxx
 
38
 
 
39
If you wish to search the help or read it as a larger document, the
 
40
information is also available in the Bazaar User Reference.
 
41