e599814bb9
The build directory is created by setuptools when a package is created. The file RELEASENOTES.rst used to exist as a manually managed file, and is now created when reno is installed and a package is created. The file releasenotes/notes/reno.cache is created when reno is installed and a package is created. None of these files should be tracked by git, so add them to the .gitignore list. Change-Id: Ia5e24a9d21ed2a0e51dd81b2cd3e44231c885fcc Signed-off-by: Doug Hellmann <doug@doughellmann.com>
32 lines
386 B
Plaintext
32 lines
386 B
Plaintext
_build/
|
|
/AUTHORS
|
|
/ChangeLog
|
|
/dist/
|
|
/openstackdocstheme.egg-info/
|
|
.DS_Store
|
|
*.pyc
|
|
doc/build
|
|
doc/source/BBresult
|
|
api-ref/build
|
|
.tox
|
|
/.venv
|
|
*.swp
|
|
*.log
|
|
*.egg*
|
|
|
|
# Editors
|
|
*~
|
|
|
|
# Files created by releasenotes build
|
|
releasenotes/build
|
|
|
|
# Files created by the LaTeX/PDF build
|
|
/.aux
|
|
/.fdb_latexmk
|
|
/texput.fls
|
|
|
|
# Files created by setuptools
|
|
/build/
|
|
RELEASENOTES.rst
|
|
releasenotes/notes/reno.cache
|