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
114
One function of a version control system is to keep track of who changed
114
115
what. In a decentralized system, that requires an identifier for each
115
116
author that is globally unique. Most people already have one of these: an
116
email address. Bazaar is smart enough to automatically generate an email
117
email address. Bzr is smart enough to automatically generate an email
117
118
address by looking up your username and hostname. If you don't like the
118
119
guess that Bazaar makes, then three options exist:
120
1. Set an email address via ``bzr whoami``. This is the simplest way.
122
To set a global identity, use::
124
% bzr whoami "Your Name <email@example.com>"
126
If you'd like to use a different address for a specific branch, enter
127
the branch folder and use::
129
% bzr whoami --branch "Your Name <email@example.com>"
131
#. Setting the email address in the ``~/.bazaar/bazaar.conf`` [1]_ by
132
adding the following lines. Please note that ``[DEFAULT]`` is case
136
email=Your Name <email@isp.com>
138
As above, you can override this settings on a branch by branch basis
139
by creating a branch section in ``~/.bazaar/locations.conf`` and
140
adding the following lines::
142
[/the/path/to/the/branch]
143
email=Your Name <email@isp.com>
146
#. Overriding the two previous options by setting the global environment
147
variable ``$BZR_EMAIL`` or ``$EMAIL`` (``$BZR_EMAIL`` will take
148
precedence) to your full email address.
121
1. Set an email address via ``bzr whoami``. This is the simplest way.
123
To set a global identity, use::
125
% bzr whoami "Your Name <email@example.com>"
127
If you'd like to use a different address for a specific branch, enter
128
the branch folder and use::
130
% bzr whoami --branch "Your Name <email@example.com>"
132
#. Setting the email address in the ``~/.bazaar/bazaar.conf`` [1]_ by
133
adding the following lines. Please note that ``[DEFAULT]`` is case
137
email=Your Name <email@isp.com>
139
As above, you can override this settings on a branch by branch basis
140
by creating a branch section in ``~/.bazaar/locations.conf`` and
141
adding the following lines::
143
[/the/path/to/the/branch]
144
email=Your Name <email@isp.com>
147
#. Overriding the two previous options by setting the global environment
148
variable ``$BZR_EMAIL`` or ``$EMAIL`` (``$BZR_EMAIL`` will take
149
precedence) to your full email address.
150
151
.. [1] On Windows, the users configuration files can be found in the
151
152
application data directory. So instead of ``~/.bazaar/branch.conf``
160
161
History is by default stored in the .bzr directory of the branch. In a
161
162
future version of Bazaar, there will be a facility to store it in a
162
separate repository, which may be remote.
164
We create a new branch by running ``bzr init`` in an existing directory::
163
separate repository, which may be remote. We create a new branch by
164
running ``bzr init`` in an existing directory::
317
317
override either of the above mentioned editor options. If you quit the
318
318
editor without making any changes, the commit will be cancelled.
320
The file that is opened in the editor contains a horizontal line. The part
321
of the file below this line is included for information only, and will not
322
form part of the commit message. Below the separator is shown the list of
323
files that are changed in the commit. You should write your message above
324
the line, and then save the file and exit.
326
If you would like to see the diff that will be committed as you edit the
327
message you can use the ``--show-diff`` option to ``commit``. This will include
328
the diff in the editor when it is opened, below the separator and the
329
information about the files that will be committed. This means that you can
330
read it as you write the message, but the diff itself wont be seen in the
331
commit message when you have finished. If you would like parts to be
332
included in the message you can copy and paste them above the separator.
459
445
directory. This is a bit different to CVS, which requires that you also
460
446
do ``cvs remove``.
462
``bzr remove`` makes the file un-versioned, but may or may not delete the
463
working copy [2]_. This is useful when you add the wrong file, or decide that
464
a file should actually not be versioned.
448
``bzr remove`` makes the file un-versioned, but may or may not delete
449
the working copy [2]_. This is useful when you add the wrong file,
450
or decide that a file should actually not be versioned.
570
556
uses rsync to push the changes to the revision history and the working
573
* You can also copy the files around manually, by sending a tarball, or using
574
rsync, or other related file transfer methods. This is usually less safe
575
than using ``push``, but may be faster or easier in some situations.
559
You can also use copy the files around manually, by sending a tarball, or
560
using rsync, or other related file transfer methods. This is usually
561
less safe than using ``push``, but may be faster or easier in some
577
564
Moving changes between trees
578
565
============================