* 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
11 lines
252 B
Bash
Executable file
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!"
|