Git Naming Convention

# 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}

開發

  1. git checkout dev & npm install & git checkout -b {your_feature_branch_name}
  2. npm run dev 進行測試
  3. Git Commit & Git Push
  4. 在 Github 中開 PR, 並在 telegram 通知大家

Cloned from Justin0u0


Source

PTT StudyAbroad API