mirror of
https://github.com/vectorize-io/hindsight.git
synced 2026-09-14 19:31:49 +08:00
bb1f9cb221
* 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
12 lines
252 B
Bash
Executable File
12 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!"
|