From afbdc78f858e99542e1958f18a8901696ec3eaac Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Sat, 10 Aug 2024 15:16:12 -0400 Subject: [PATCH 1/2] Fix `.gitignore` - Remove all-encompassing `benchmark` - Add exception for `core:simd/x86` --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4c3c98b72..c67986594 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,7 @@ [Rr]eleases/ x64/ x86/ +!/core/simd/x86 bld/ [Bb]in/ [Oo]bj/ @@ -31,7 +32,6 @@ tests/documentation/all.odin-doc # Uncomment if you have tasks that create the project's static files in wwwroot #wwwroot/ demo -benchmark # MSTest test Results [Tt]est[Rr]esult*/ From 3a32250b80c838b01a05f92711576abc6fceecaf Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Mon, 12 Aug 2024 15:16:20 -0400 Subject: [PATCH 2/2] Add `.gitignore` for `tests` directory --- .gitignore | 2 -- tests/.gitignore | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 tests/.gitignore diff --git a/.gitignore b/.gitignore index c67986594..553e16005 100644 --- a/.gitignore +++ b/.gitignore @@ -23,8 +23,6 @@ bld/ [Oo]bj/ [Ll]og/ ![Cc]ore/[Ll]og/ -tests/documentation/verify/ -tests/documentation/all.odin-doc # Visual Studio 2015 cache/options directory .vs/ # Visual Studio Code options directory diff --git a/tests/.gitignore b/tests/.gitignore new file mode 100644 index 000000000..ce17927b4 --- /dev/null +++ b/tests/.gitignore @@ -0,0 +1,19 @@ +# Ignore all files. +* + +# Un-ignore all directories. +!*/ + +# Un-ignore files with an extension. +# +# In conjunction with the first two rules, this should catch extensionless +# binaries on the UNIX-like platforms. +!*.* + +# But remember to ignore executables with an extension. +*.exe +*.bin + +# Ignore documentation-related files. +/documentation/verify/ +/documentation/all.odin-doc