원클릭으로
git
Commit and push changes in this repo. Stages everything, commits with a short message, rebases onto origin/main, then pushes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Commit and push changes in this repo. Stages everything, commits with a short message, rebases onto origin/main, then pushes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | git |
| description | Commit and push changes in this repo. Stages everything, commits with a short message, rebases onto origin/main, then pushes. |
| argument-hint | [optional short commit message] |
When the user asks to commit and push, run:
git add -A && git commit -m "<short message>" && git pull --rebase origin main && git push origin main
The pull --rebase step integrates any remote-only changes before pushing.
If the user supplied a message as the argument, use it verbatim. Otherwise, derive a concise message from the staged changes.