From 390ffd6732bb8c7308dc59131a026a38c12f6b78 Mon Sep 17 00:00:00 2001 From: yehuthi Date: Wed, 19 Jun 2024 09:18:52 +0300 Subject: [PATCH] ignore zig directories at project root only Also, add support for `zig-cache` with a leading dot; `.zig-cache`. --- .gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e73c965..c52253f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ -zig-cache/ -zig-out/ +/zig-cache/ +/zig-out/ +/.zig-cache