diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2009-08-26 18:19:50 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2009-08-26 18:19:50 +0200 |
commit | 79789e9c60f3319b478af4671e683ce5c97c25a7 (patch) | |
tree | 98ef2ce8150213acbdab4d21ba67a6f18cd1beb7 /.bzrignore | |
parent | 095bdb6fe230a499ab150e55d514b938d2d2bbd7 (diff) |
add ignore patterns to be able to use "bzr status" or "bzr add" again
after building apt by ignoring temporary files, build files and the
autogenerated files in doc/.
Diffstat (limited to '.bzrignore')
-rw-r--r-- | .bzrignore | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.bzrignore b/.bzrignore new file mode 100644 index 000000000..bad8837c6 --- /dev/null +++ b/.bzrignore @@ -0,0 +1,30 @@ +# temporary and backup files +*~ +*.bak +*.rej + +# buildrelated files/dirs +aclocal.m4 +autom4te.cache/ +build/ +configure + +# generated apt man pages +doc/*.1 +doc/*.5 +doc/*.8 +doc/*/*.1 +doc/*/*.5 +doc/*/*.8 +doc/*/apt.ent + +# ignore xml man page files generated by po4a +# older translation methods translate in this files +# so we can not ignore it for all translations now +doc/ja/*.xml + +# FIXME: files generated by deprecated sgml man pages +doc/es/manpage.links +doc/es/manpage.refs +doc/pt_BR/manpage.links +doc/pt_BR/manpage.refs |