~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/tutorial.txt

Merge with bzr.dev after 0.8 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
address by looking up your username and hostname. If you don't like the
118
118
guess that Bazaar-NG makes, then three options exist:
119
119
 
120
 
 1. (**Bazaar-NG 0.6 and later**). Setting the email address in the
 
120
 1. Setting the email address in the
121
121
 ``~/.bazaar/bazaar.conf`` by adding the following lines. Please note that
122
122
 ``[DEFAULT]`` is case sensitive::
123
123
 
124
124
    [DEFAULT]
125
125
    email= Your Name <email@isp.com>
126
126
 
127
 
 1. (**Bazaar-NG 0.6 and later**) Override the previous setting on a
 
127
 1. Override the previous setting on a
128
128
 branch by branch basis by creating a branch section in
129
129
 ``~/.bazaar/branches.conf`` by adding the following lines::
130
130
 
246
246
 
247
247
    % bzr diff --diff-options --side-by-side foo
248
248
 
 
249
Some projects prefer patches to show a prefix at the start of the path for
 
250
old and new files.  The --prefix option can be used to provide such a prefix. 
 
251
As a shortcut, ``bzr diff -p1`` produces a form that works with the 
 
252
command ``patch -p1``.
 
253
 
249
254
Committing changes
250
255
==================
251
256
 
276
281
 
277
282
If you use neither the `-m` nor the `-F` option then bzr will open an
278
283
editor for you to enter a message.  The editor to run is controlled by
279
 
your `$EDITOR` environment variable or (Post Bazaar-NG 0.6) email setting
280
 
in .  If you quit the editor without making any changes, the commit will
281
 
be cancelled.
 
284
your `$EDITOR` environment variable or 
 
285
add `editor` to ~/.bazaar/bazaar.conf; `$BZR_EDITOR` will override
 
286
the above mentioned editor options.  If you quit the editor without
 
287
making any changes, the commit will be cancelled.
282
288
 
283
289
Selective commit
284
290
----------------