File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -164,6 +164,11 @@ When fixing bugs, always follow Test-Driven Development:
1641643 . ** Implement the fix** - Make the minimal code change to fix the issue
1651654 . ** Verify the test passes** - Run the test again to confirm the fix works
1661665 . ** Run full test suite** - Ensure no regressions with ` yarn test:ci `
167+ 6 . ** Create a branch** - ` git checkout -b fix/descriptive-branch-name `
168+ 7 . ** Commit the fix** - Use a descriptive commit message referencing the issue (e.g., ` fix: description of fix\n\nFixes #123 ` )
169+ 8 . ** Push the branch** - ` git push -u origin fix/descriptive-branch-name `
170+ 9 . ** Create a PR** - Use ` gh pr create ` with a clear title and description that references the issue
171+ 10 . ** Return to main** - ` git checkout main ` to prepare for the next task
167172
168173This ensures every bug fix has regression coverage and documents the expected behavior.
169174
You can’t perform that action at this time.
0 commit comments