在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用git-workflow
星标0
分支0
更新时间2026年1月23日 02:42
Git 작업 흐름, 커밋 메시지, 브랜치 전략 가이드
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Git 작업 흐름, 커밋 메시지, 브랜치 전략 가이드
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
디버깅 전략, 로깅 베스트 프랙티스, 에러 추적
REST API 설계 원칙, GraphQL 패턴, API 버저닝
코드 품질 가이드, 클린 코드 원칙, 리팩토링 패턴
기술 문서 작성 가이드, 문서 유형별 템플릿
성능 최적화 패턴, 캐싱 전략, 데이터베이스 최적화
보안 취약점 분석, OWASP Top 10, 인증/인가 패턴
| name | git-workflow |
| description | Git 작업 흐름, 커밋 메시지, 브랜치 전략 가이드 |
<type>(<scope>): <description>
[optional body]
[optional footer(s)]
| Type | 설명 | 예시 |
|---|---|---|
feat | 새로운 기능 추가 | feat(auth): add OAuth2 login |
fix | 버그 수정 | fix(cart): correct price calculation |
docs | 문서 변경 | docs: update API documentation |
style | 코드 포맷팅 | style: fix indentation |
refactor | 리팩토링 | refactor(user): extract validation logic |
test | 테스트 추가/수정 | test(api): add unit tests for endpoints |
chore | 빌드, 설정 등 | chore: update dependencies |
perf | 성능 개선 | perf(query): optimize database queries |
ci | CI 설정 변경 | ci: add GitHub Actions workflow |
feat(payment): add Stripe payment integration
- Add Stripe SDK and configuration
- Implement checkout session creation
- Add webhook handlers for payment events
Closes #123
fix bugupdate codeWIPasdfmain (production)
└── develop
├── feature/add-login
├── feature/update-dashboard
└── bugfix/fix-payment-error
feature/<feature-name> # 새 기능
bugfix/<bug-description> # 버그 수정
hotfix/<issue> # 긴급 수정
release/<version> # 릴리스 준비
## 변경 사항
-
## 변경 이유
-
## 테스트
- [ ] 단위 테스트 추가/수정
- [ ] 통합 테스트 확인
- [ ] 수동 테스트 완료
## 스크린샷 (UI 변경 시)
## 관련 이슈
Closes #
# 브랜치 생성 및 이동
git checkout -b feature/new-feature
# 변경사항 확인
git status
git diff
# 커밋
git add -p # 변경사항 선택적 추가
git commit -m "feat: add new feature"
# 리베이스
git fetch origin
git rebase origin/main
# 스쿼시 (여러 커밋 합치기) - 터미널에서 직접 실행
git rebase -i HEAD~3
# 실수 복구
git reset --soft HEAD~1 # 마지막 커밋 취소 (변경사항 유지)
git stash # 임시 저장
git stash pop # 임시 저장 복구
git statusgit add <file>git rebase --continuedocumentation: PR 설명 작성code-quality: 커밋 전 코드 리뷰