From 1ebb6efa6a42be671428b9345a9c8f0f0ceccb7c Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Wed, 28 Mar 2018 23:20:12 -0400 Subject: [PATCH] gitignore: ignore nit_compile folders and contents nit_compile are a series of generated intermediate C files that should not be versioned. We therefore add them to the .gitignore to eliminate them from the index. Signed-off-by: Lucas Bajolet --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index a352bf5..dc1e54b 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,5 @@ nitunit.xml .metadata/* .github_data .DS_Store + +**/nit_compile/* -- 1.7.9.5