# Git Commit And Push

> Use when user says "commit and push", "커밋하고 푸시", "올려줘", "저장하고 올려". Do NOT use for commit-only (use git-commit) or push-only (use git-push).

- Skill: `tomevault-io/git-commit-and-push` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/git-commit-and-push`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/git-commit-and-push/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/git-commit-and-push

---


# Git Commit and Push

커밋과 푸시를 순차적으로 수행합니다.

## Workflow

1. **Commit Phase** - `/git-commit` 스킬 참조
2. **Push Phase** - `/git-push` 스킬 참조

## Quick Flow

```bash
# 1. 상태 확인
git status
git fetch origin

# 2. 스테이징 & 커밋
git add <files>
git commit -v

# 3. 동기화 & 푸시
git pull --rebase origin $(git branch --show-current)
git push origin $(git branch --show-current)
```

## Checklist

- [ ] 민감한 정보 없음
- [ ] 테스트 통과
- [ ] 커밋 메시지 규칙 준수 (/git-commit 참조)
- [ ] Protected branch 직접 push 주의

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/sskim91) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-14 -->

