Skip to content

πŸ“’ Commit Convention

Lee Eun Bin edited this page Sep 19, 2023 · 3 revisions

Template

μ„œμ‹

[Type] Title
- Description

μ„€λͺ…

  • νƒ€μž…: μ•„λž˜ ν‘œλ₯Ό ν™œμš©ν•˜μ—¬ μ •ν™•ν•œ μΉ΄ν…Œκ³ λ¦¬λ₯Ό μ„ νƒν•œλ‹€.
  • 제λͺ©: μ΅œλŒ€ 50κΈ€μž μ΄λ‚΄λ‘œ μž‘μ„±ν•œλ‹€.
  • 상세 μ„€λͺ…: κΈ°λŠ₯ 및 진행 λ‚΄μš©μ„ μƒμ„Έν•˜κ²Œ κΈ°μˆ ν•œλ‹€.

νƒ€μž… ꡬ뢄

νƒ€μž… μ„€λͺ… μ˜ˆμ‹œ
feat μƒˆλ‘œμš΄ κΈ°λŠ₯ μΆ”κ°€ Feat: Add Key mapping
fix 버그 μˆ˜μ • Fix: Handle null pointer exception
refactor μ½”λ“œ λ¦¬νŒ©ν† λ§ Refactor: Improve code structure
markup λ§ˆν¬μ—… (HTML) λ³€κ²½ Markup: Update index.html
design μ‚¬μš©μž UI λ””μžμΈ λ³€κ²½ Design: Update button styles
comment ν•„μš”ν•œ 주석 μΆ”κ°€ 및 λ³€κ²½ Comment: Add comments to explain logic
style μ½”λ“œ ν˜•μ‹, μ„Έλ―Έμ½œλ‘  μΆ”κ°€ λ“± μŠ€νƒ€μΌ λ³€κ²½ Style: Format code according to style guide
docs λ¬Έμ„œ μˆ˜μ • Docs: Update README with new instructions
test ν…ŒμŠ€νŠΈ μ½”λ“œ μΆ”κ°€, μˆ˜μ •, μ‚­μ œ Test: Add unit tests for authentication
init 초기 생성 Init: Create new project
rename 파일 ν˜Ήμ€ 폴더λͺ… μˆ˜μ • λ˜λŠ” 이동 μž‘μ—… Rename: Rename utils.py to helpers.py
remove 파일 μ‚­μ œ Remove: Delete obsolete file
sync νŒ€μ›λ“€κ³Ό 동기화 Sync: Pull and Merge
deploy 배포 Deploy: Build

Tip

μž‘μ—… 쀑간에 develop 브랜치 μ—…λ°μ΄νŠΈ μ‹œ 동기화 방법

  1. git stash
  2. git switch develop
  3. git pull upstream develop
  4. git switch <μž‘μ—… branch>
  5. git stash pop
  6. git merge develop