fleet-memory/scripts/setup-hooks.sh
Nicolò Boschi bb1f9cb221
feat: support for gemini-3-pro and gpt-5.2 (#30)
* feat: support for gemini-3-pro and gpt-5.2

* feat: support for gemini-3-pro and gpt-5.2

* feat: support for gemini-3-pro and gpt-5.2

* feat: support for gemini-3-pro and gpt-5.2

* feat: add local mcp server

* docs

* docs
2025-12-16 11:00:27 +01:00

11 lines
252 B
Bash
Executable file

#!/bin/bash
# Setup git hooks for the repository
set -e
REPO_ROOT="$(git rev-parse --show-toplevel)"
echo "Setting up git hooks..."
git config core.hooksPath "$REPO_ROOT/.githooks"
echo "Git hooks configured to use .githooks directory"
echo "Done!"