~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/tutorials/tutorial.txt

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-30 05:43:20 UTC
  • mfrom: (3054.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20071130054320-b4oer0rcbiy2ouzg
Bazaar User Guide for 1.0rc (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
Bazaar installs a single new command, **bzr**.  Everything else is a
110
110
subcommand of this.  You can get some help with ``bzr help``. Some arguments 
111
111
are grouped in topics: ``bzr help topics`` to see which topics are available.
112
 
There will be more in the future.
113
112
 
114
113
One function of a version control system is to keep track of who changed
115
114
what.  In a decentralized system, that requires an identifier for each
116
115
author that is globally unique.  Most people already have one of these: an
117
 
email address. Bzr is smart enough to automatically generate an email
 
116
email address. Bazaar is smart enough to automatically generate an email
118
117
address by looking up your username and hostname. If you don't like the
119
118
guess that Bazaar makes, then three options exist:
120
119
 
160
159
 
161
160
History is by default stored in the .bzr directory of the branch. In a
162
161
future version of Bazaar, there will be a facility to store it in a
163
 
separate repository, which may be remote.  We create a new branch by
164
 
running ``bzr init`` in an existing directory::
 
162
separate repository, which may be remote.
 
163
 
 
164
We create a new branch by running ``bzr init`` in an existing directory::
165
165
 
166
166
    % mkdir tutorial
167
167
    % cd tutorial