一键导入
git
Check local changes, generate commit message and commit local changes, push commits to remote repo.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check local changes, generate commit message and commit local changes, push commits to remote repo.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | git |
| description | Check local changes, generate commit message and commit local changes, push commits to remote repo. |
You have permission to use git for committing and pushing to remote repositories.
Use this skill when explicitly asked to:
Before proceeding, ALWAYS:
git status to inspect the repository stategit branch --show-currentUse git add . to stage all changes, OR:
git add <specific-files> if only certain files should be committedgit diff --cached before committingGenerate commit messages following Conventional Commits format:
<type>(<scope>): <imperative-mood-summary>
Scan changed files and determine type using this PRIORITY ORDER:
auth,
api, cli)feat(auth): add OAuth2 login support
fix(api): return 404 for missing resources
refactor(parser): extract validation logic
docs(readme): update installation instructions
chore(deps): bump lodash to 4.17.21
git commit -m "<message>"After successful commit:
git pushgit push -u origin <branch-name>git pull --rebase if
applicable--no-verify)--force or --force-with-lease unless explicitly requested--no-verify unless explicitly requested