From e599814bb92438f8f1b7dd76485c0031c9f22c04 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Thu, 26 Jul 2018 03:58:02 -0400 Subject: [PATCH] ignore files created during packaging 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 --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 6e37f5f..af05066 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,8 @@ releasenotes/build /.aux /.fdb_latexmk /texput.fls + +# Files created by setuptools +/build/ +RELEASENOTES.rst +releasenotes/notes/reno.cache