---
title: "Git 워크플로우"
description: "<선택적 본문> ```"
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/git-workflow-3
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:24:48.779Z
license: CC-BY-4.0
attribution: "Git 워크플로우 — Claudary (https://claudary.paisolsolutions.com/skills/git-workflow-3)"
---

# Git 워크플로우
<선택적 본문> ```

## Overview

# Git 워크플로우

## 커밋 메시지 형식
```
<type>: <description>

<선택적 본문>
```

타입: feat, fix, refactor, docs, test, chore, perf, ci

참고: 어트리뷰션 비활성화 여부는 각자의 `~/.claude/settings.json` 로컬 설정에 따라 달라질 수 있습니다.

## Pull Request 워크플로우

PR을 만들 때:
1. 전체 커밋 히스토리를 분석 (최신 커밋만이 아닌)
2. `git diff [base-branch]...HEAD`로 모든 변경사항 확인
3. 포괄적인 PR 요약 작성
4. TODO가 포함된 테스트 계획 포함
5. 새 브랜치인 경우 `-u` 플래그와 함께 push

> git 작업 전 전체 개발 프로세스(계획, TDD, 코드 리뷰)는
> [development-workflow.md](./development-workflow.md)를 참고하세요.

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/git-workflow-3) · https://claudary.paisolsolutions.com
