Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:0
forks:0
updated:May 6, 2026 at 11:16
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | commit |
| description | 提交当前分支的代码改动并推送到所有远程仓库 |
| parameterity | foreground |
执行 git status 查看工作区状态,git diff --stat 查看改动统计。
执行 git add -A 暂存所有文件(新增、修改、删除),不包括 .claude/worktrees/ 和 .claude/settings.local.json。
根据改动内容生成提交信息,格式为 type(scope): description。
分析改动:
git diff --stat 了解改动文件范围git diff --cached 了解具体改动内容module-user/、module-base/)feat(新增功能)、refactor(重构)、fix(修复)、chore(维护)、docs(文档)示例格式:
feat(module-user): 添加用户管理功能refactor(entity): 重构字典实体关系fix(service): 修复权限校验逻辑chore: 更新依赖版本docs: 更新 API 文档必须向用户展示生成的提交信息,等待用户确认后再执行 git commit。
如果用户修改了提交信息,使用用户提供的版本。
如果工作区干净(没有改动),则跳过提交,直接推送。
获取所有远程仓库名称(执行 git remote)。
对每个远程仓库执行 git push <remote> <当前分支>。
如果存在上游分支追踪问题(如上游分支已被删除),使用 git push -u <remote> <当前分支> 强制设置上游。
向用户汇报提交 hash、涉及的远程仓库和推送结果。