12 lines
258 B
Bash
Executable File
12 lines
258 B
Bash
Executable File
#!/bin/bash
|
||
# Agent提交前的钩子
|
||
|
||
echo "🔍 检查agent身份..."
|
||
AGENT_NAME=$(git config user.name)
|
||
if [[ -z "$AGENT_NAME" ]]; then
|
||
echo "❌ 未设置agent身份,请先使用agent协作系统"
|
||
exit 1
|
||
fi
|
||
|
||
echo "✅ 当前agent: $AGENT_NAME"
|