From 9a621942f3dcc0f46d464f376dbdffca9d2e0694 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Wed, 13 May 2020 10:58:54 -0400 Subject: [PATCH] gitignore: ignore .test and .json files The .test files are generated by some makefile rules and should never be checked in. There's also no reason to track json files which may be generated by running tools. Signed-off-by: John Mulligan --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 5965b3a..b81faa6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ .build-docker *.swp *.out +*.test +*.json