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

  • Committer: Xavier Maillard
  • Date: 2008-03-26 06:21:48 UTC
  • mto: (3322.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3323.
  • Revision ID: xma@gnu.org-20080326062148-f7mnwvttv4oq8013
Add mail-mode GNU Emacs mail package as a mail_client option.
    
Idea and original code by Bojan Nikolic modified in this way:
    
1. define a different python class EmacsMailMode
2. use mail-mode package instead of message-mode. mail-mode is the
   default mail mode in GNU Emacs.
3. put the patch as a MIME attachment (see NOTE)
4. add tests as required to fulfil merge strategy requirements
    
To use this option, just put these lines into ~/.bazaar/bazaar.conf
    
[DEFAULT]
mail_client = emacs-mailmode

NOTE: this will work only for GNU Emacs version from 22.1 and superior.
      The MIME attachment is handled by etach[1] package. Just put
      etach.el into your `load-path'. GNU Emacs is not shipped with a
      simple MIME package thus the need of a simple and reliable
      alternative (etach does both reading and writing of MIME objects).

[1] http://rulnick.com/etach/download

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
    config.h                 ./config.h
74
74
    configure.in~            *~
75
75
 
76
 
Note that ignore patterns are only matched against non-versioned files,
77
 
and control whether they are treated as "unknown" or "ignored".  If a file
78
 
is explicitly added, it remains versioned regardless of whether it matches
79
 
an ignore pattern.
 
76
It is OK to have either an ignore pattern match a versioned file, or to
 
77
add an ignored file.  Ignore patterns have no effect on versioned files;
 
78
they only determine whether unversioned files are reported as unknown or
 
79
ignored.
80
80
 
81
81
The ``.bzrignore`` file should normally be versioned, so that new copies
82
82
of the branch see the same patterns::
84
84
    % bzr add .bzrignore
85
85
    % bzr commit -m "Add ignore patterns"
86
86
 
87
 
The command ``bzr ignore PATTERN`` can be used to easily add PATTERN to
88
 
the ``.bzrignore file`` (creating it if necessary and registering it to
89
 
be tracked by Bazaar).  Removing and modifying patterns are done by
90
 
directly editing the ``.bzrignore`` file.
91
 
 
92
87
Global ignores
93
88
--------------
94
89
 
100
95
 
101
96
.. [#] On Windows, the users configuration files can be found in the
102
97
   application data directory. So instead of ``~/.bazaar/branch.conf``
103
 
   the configuration file can be found as:
 
98
   the configuration file can be found as: 
104
99
   ``C:\Documents and Settings\<username>\Application Data\Bazaar\2.0\branch.conf``.
105
100
   The same is true for ``locations.conf``, ``ignore``, and the
106
101
   ``plugins`` directory.