Skip to content

New Task branch

  1. Create a feature branch.
    git checkout -b "feat/1091"
    
  2. Make sure the branch is rebased onto main branch.
    git pull origin main --rebase
    
  3. Make changes to complete the task.
  4. Make a commit with the changes.
    1
    2
    3
    git add .
    git commit -m "feat(1091): add new page" # `pre-commit` hooks will be triggered to ensure the code quality.
    git pull origin main --rebase
    
  5. Push the commit to the remote repository.
    git push
    
  6. Make a PR from the feature branch into the target branch via UI.
  7. Wait until the checks pass before requesting the peer review via UI.
  8. Once the PR is approved, merge the PR via UI.