#!/usr/bin/env bash
# task-2457 Phase 2-A: uninstall git hooks (core.hooksPath 해제)
set -euo pipefail
git config --unset core.hooksPath || true
echo "[OK] core.hooksPath unset"
