1.6 KiB
1.6 KiB
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
This is a minimal git learning repository used for practicing git commands and workflows. The parent directory (D:/00.study/) is a learning repository containing multiple framework projects (Vue, Nuxt, Next.js, React).
Repository Structure
- main branch: Contains only CLAUDE.md
- feature/study branch: Contains CLAUDE.md and bug1.mg (버그수정)
- Remote: origin/main configured
커밋 메시지 규칙
커밋 메시지는 아래 형식을 따른다.
feat: 내용refactor: 내용test: 내용
작성 원칙
내용은 반드시 한글로 작성한다.- 제목 한 줄로 작성하고 불필요한 기호를 사용하지 않는다.
- 변경 의도가 드러나게 간결하게 작성한다.
예시
feat: 회원 가입 폼 유효성 검사 추가refactor: 결제 모듈 상태 관리 로직 분리test: 로그인 서비스 단위 테스트 케이스 보강
Common Git Commands
# View all branches
git branch -a
# Switch branches
git checkout feature/study
git checkout main
# View commit history
git log --all --oneline --graph
# View file changes in commits
git log --all --name-status --oneline
# Show file content from specific commit
git show <commit-hash>:<filename>
# List files in current HEAD
git ls-tree -r HEAD --name-only
Repository Context
This is a practice repository for learning git workflows. The minimal structure allows focus on git operations rather than application code.