From 0ba49cce45405a688f7e7893e203f7d3f0bc780c Mon Sep 17 00:00:00 2001 From: Tommi Sinivuo <600815+TommiSinivuo@users.noreply.github.com> Date: Wed, 11 Aug 2021 12:56:05 +0300 Subject: [PATCH] Add *.so.* to .gitignore to ignore build artifacts (#1912) When building a shared Raylib library on Linux, the build process produces 3 files: libraylib.so (symlink), libraylib.so.381 (symlink) and libraylib.so.3.8.1 (the library). Only the first one of these (.so) is currently ignored by Git. Adding *.so.* to .gitinore makes Git ignore the rest of them as well. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 00c9bdcec..dcfa5bce2 100644 --- a/.gitignore +++ b/.gitignore @@ -57,6 +57,7 @@ packages/ *.a *.bc *.so +*.so.* # Ignore wasm data in examples/ examples/**/*.wasm