Refactor code structure for improved readability and maintainability
mandatory-regression-gate / deterministic-tests (push) Has been cancelled
mandatory-regression-gate / protected-performance-path (push) Has been cancelled

This commit is contained in:
Your Name
2026-07-23 15:34:05 +03:00
parent 593522e83f
commit 8447b2d796
21 changed files with 3439 additions and 4 deletions
+18
View File
@@ -0,0 +1,18 @@
@echo off
REM Install repository Git hooks (Windows)
for /f "delims=" %%i in ('git rev-parse --show-toplevel') do set REPO_ROOT=%%i
cd /d "%REPO_ROOT%"
git config --local core.hooksPath .githooks
set CONFIGURED=
for /f "delims=" %%i in ('git config --local --get core.hooksPath') do set CONFIGURED=%%i
if not "%CONFIGURED%"==".githooks" (
echo Failed to configure repository Git hooks.
exit /b 1
)
echo Repository hooks installed: core.hooksPath=.githooks
exit /b 0