Skip to content

📝 커밋 메시지 컨벤션#

커밋 타입#

타입 설명
feat 새로운 기능 추가
fix 버그 수정
refactor 코드 리팩토링
docs 문서 수정
test 테스트 코드 추가/수정
chore 빌드, 의존성 업데이트

커밋 메시지 작성 요령#

  • 한글

feat#

feat: Add missile tracking algorithm #1

- Implement Kalman filter for target tracking
- Improve accuracy of missile trajectory calculation

fix#

fix: Resolve buffer overflow in guidance system

Fix memory allocation issue in Guidance.cpp

docs#

docs: Update coding style guide

chore#

chore: Update dependencies

refactor#

refactor: Simplify missile initialization logic

test#

test: Add unit tests for LaunchControl

style#

style: Apply clang-format rules