بنقرة واحدة
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