원클릭으로
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