Files
agent/.agent/workflows/push.md

495 B
Raw Permalink Blame History

description
description
自动暂存所有更改,生成语义化 Commit Message并推送到远程仓库
  1. 添加所有变更到暂存区 // turbo Run git add .

  2. 查看变更文件列表以生成 Commit Message // turbo Run git status

  3. 生成提交信息并提交分析变更内容,生成符合 Angular Commit Convention 的提交信息(如 feat: add new workflow, fix: style issue)。 Run git commit -m "type: subject"

  4. 推送到远程仓库 // turbo Run git push