From 6bc658a1c703c9a296cec51bdce92c009867601a Mon Sep 17 00:00:00 2001 From: oittaa <8972248+oittaa@users.noreply.github.com> Date: Sun, 25 May 2025 21:22:56 +0200 Subject: [PATCH] Zig.gitignore add *.o $ zig version 0.14.1 If you run `zig build-exe myfile.zig` it will generate myfile.o in addition to the executable in the current directory. I think those should be ignored even though they are usually in the zig-out directory if you use the proper build system. --- Zig.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Zig.gitignore b/Zig.gitignore index 3389c86c..0180838a 100644 --- a/Zig.gitignore +++ b/Zig.gitignore @@ -1,2 +1,3 @@ .zig-cache/ zig-out/ +*.o