~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/tutorial.txt

Merge Tree.changes_from work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
     % bzr whoami --branch 'Your Name <email@example.com>'
129
129
 
130
130
 1. Setting the email address in the
131
 
 ``~/.bazaar/bazaar.conf`` by adding the following lines. Please note that
 
131
 ``~/.bazaar/bazaar.conf`` [1]_ by adding the following lines. Please note that
132
132
 ``[DEFAULT]`` is case sensitive::
133
133
 
134
134
    [DEFAULT]
145
145
 variable ``$BZREMAIL`` or ``$EMAIL`` (``$BZREMAIL`` will take precedence) 
146
146
 to your full email address.
147
147
 
 
148
.. [1] On Windows, the users configuration files can be found in the
 
149
   application data directory. So instead of ``~/.bazaar/branch.conf``
 
150
   the configuration file can be found as: 
 
151
   ``C:\Documents and Settings\<username>\Application Data\Bazaar\2.0\branch.conf``.
 
152
   The same is true for ``locations.conf``, ``ignore``, and the
 
153
   ``plugins`` directory.
 
154
 
148
155
Creating a branch
149
156
=================
150
157
 
358
365
they only determine whether unversioned files are reported as unknown or
359
366
ignored.
360
367
 
361
 
The ''.bzrignore'' file should normally be versioned, so that new copies
 
368
The ``.bzrignore`` file should normally be versioned, so that new copies
362
369
of the branch see the same patterns::
363
370
 
364
371
    % bzr add .bzrignore
365
372
    % bzr commit -m "Add ignore patterns"
366
373
 
367
374
 
 
375
Global Ignores
 
376
--------------
 
377
 
 
378
There are some ignored files which are not project specific, but more user
 
379
specific. Things like editor temporary files, or personal temporary files.
 
380
Rather than add these ignores to every project, bzr supports a global
 
381
ignore file in ``~/.bazaar/ignore`` [1]_. It has the same syntax as the
 
382
per-project ignore file.
 
383
 
 
384
 
368
385
Examining history
369
386
=================
370
387