feat(system): 调整Git规范

This commit is contained in:
2026-03-27 16:18:21 +08:00
parent fdd65711e9
commit 1e47618406
10 changed files with 556 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
$ErrorActionPreference = 'Stop'
$repoRoot = Resolve-Path (Join-Path $PSScriptRoot '..')
$hooksPath = Join-Path $repoRoot 'githooks'
git -C $repoRoot config core.hooksPath $hooksPath
Write-Host "Git hooks installed."
Write-Host "core.hooksPath=$hooksPath"