Controlling file registration¶
What does Breezy track?¶
As explained earlier, brz add
finds and registers all the things in
and under the current directory that Breezy thinks ought to be
version controlled. These things may be:
files
directories
symbolic links.
Breezy has default rules for deciding which files are interesting and which ones are not. You can tune those rules as explained in Ignoring files below.
Unlike many other VCS tools, Breezy tracks directories as first class items. As a consequence, empty directories are correctly supported - you don’t need to create a dummy file inside a directory just to ensure it gets tracked and included in project exports.
For symbolic links, the value of the symbolic link is tracked, not the content of the thing the symbolic link is pointing to.
Note: Support for tracking projects-within-projects (“nested trees”) is currently under development. Please contact the Breezy developers if you are interested in helping develop or test this functionality.
Selective registration¶
In some cases, you may want or need to explicitly nominate the things
to register rather than leave it up to Breezy to find things. To do this,
simply provide paths as arguments to the add
command like this:
brz add fileX dirY/
Adding a directory implicitly adds all interesting things underneath it.
Ignoring files¶
Many source trees contain some files that do not need to be versioned,
such as editor backups, object or bytecode files, and built programs. You
can simply not add them, but then they’ll always crop up as unknown files.
You can also tell Breezy to ignore these files by adding them to a file
called .bzrignore
at the top of the tree.
This file contains a list of file wildcards (or “globs”), one per line. Typical contents are like this:
*.o
*~
*.tmp
*.py[co]
If a glob contains a slash, it is matched against the whole path from the
top of the tree; otherwise it is matched against only the filename. So
the previous example ignores files with extension .o
in all
subdirectories, but this example ignores only config.h
at the top level
and HTML files in doc/
:
./config.h
doc/*.html
To get a list of which files are ignored and what pattern they matched,
use brz ignored
:
% brz ignored
config.h ./config.h
configure.in~ *~
Note that ignore patterns are only matched against non-versioned files, and control whether they are treated as “unknown” or “ignored”. If a file is explicitly added, it remains versioned regardless of whether it matches an ignore pattern.
The .bzrignore
file should normally be versioned, so that new copies
of the branch see the same patterns:
% brz add .bzrignore
% brz commit -m "Add ignore patterns"
The command brz ignore PATTERN
can be used to easily add PATTERN to
the .bzrignore file
(creating it if necessary and registering it to
be tracked by Breezy). Removing and modifying patterns are done by
directly editing the .bzrignore
file.
Global ignores¶
There are some ignored files which are not project specific, but more user
specific. Things like editor temporary files, or personal temporary files.
Rather than add these ignores to every project, brz supports a global
ignore file in ~/.config/breezy/ignore
[1]. It has the same syntax as the
per-project ignore file.