# Branch Naming Convention
- master -> Main branch
- dev -> Checkout from master -> Merge to master
- feature/xxx -> Checkout from dev -> Merge to dev
- hotfix/xxx -> Checkout from master -> Merge to dev, master
# Commit Convention
- feat: {feature you add}
- fix: {bug you fix}
- doc: {document, comment you add/fix}
- chore: {setting, config you set}
git checkout dev
& npm install
& git checkout -b {your_feature_branch_name}
npm run dev
進行測試Git Commit
& Git Push
Cloned from Justin0u0
Source