Skip to content
Victor Lin edited this page Aug 13, 2020 · 1 revision

Git

Common branches

  • dev is the main working branch which all pull requests should point to.
  • prod is always identical to or behind dev. It should only be changed by the deployment process.

Other branches patterns

  • feature/<username>/<description> for features (example: feature/victorlin/add-explore-page)
  • fix/<username>/<description> for bug fixes (example: fix/victorlin/query-page-floating)
  • update/<username>/<description> for enhancements (example: update/victorlin/add-query-filters)
Clone this wiki locally