From 9d212e6fb9063cdca35bf03ab0d97a389de675be Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Fri, 20 Feb 2015 10:43:00 -0800 Subject: Fix .gitignore for .tox and .testrepository The entries for tox and testrepository weren't working with `git clean -df` so this updates them to match what's in nova's .gitignore. Testing manually shows this doesn't blast those directories when running git clean. Change-Id: Iba569afabea748369f76351bf5521ca1c0fdce0c Closes-Bug: #1423983 --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7432d66..f863cfe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ AUTHORS ChangeLog -.tox/* -.testrepository/* +.tox +.testrepository/ *.pyc *data/* *build/* -- cgit v1.2.1