495 B
495 B
description
| description |
|---|
| 自动暂存所有更改,生成语义化 Commit Message,并推送到远程仓库 |
-
添加所有变更到暂存区 // turbo Run
git add . -
查看变更文件列表以生成 Commit Message // turbo Run
git status -
生成提交信息并提交分析变更内容,生成符合 Angular Commit Convention 的提交信息(如
feat: add new workflow,fix: style issue)。 Rungit commit -m "type: subject" -
推送到远程仓库 // turbo Run
git push