安全的 Git workflow:inspect status / diff / branch / history,并在用户明确要求时执行 commit 或 push。
skillsy install hypoxanthineovo/hypoxanthine-agent@git-workflowgit-workflow 是面向现有 repository 的安全 Git workflow,强调先 inspect,再决定是否做 commit、push 或其他写操作。
status、diff、branch、history。stage、commit、push。exec_command 运行 Git 命令,并受 exec_profile=git 约束。git status --short 了解 worktree 状态。git diff 或 git diff --cached 检查变更内容。git log --oneline -20 查看最近历史。stage、commit 或 push。git reset --hard。git push --force。