From 534864bccd78812648ad1beaccdeec7c9d47aeef Mon Sep 17 00:00:00 2001 From: Ram Shanker <182385+ramshankerji@users.noreply.github.com> Date: Fri, 28 Jun 2024 07:48:06 +0530 Subject: [PATCH] Add build folder to .gitignore. A library is usually expected to be built in a folder /build at its root. Whenever this repository is added as a submodule of another project and compiled, git shows all the generated files as changes. To suppress those git messages, this ignores the build folder. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index bd44d84..e867428 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ /minigzipsh /zlib.pc /configure.log +/build .DS_Store .vs