When PRs Are Waste
PR Flow Steps surrounding the work: git checkout main git pull git branch -D old-pr-branch git checkout -b new-pr-branch work git commit git push Create PR Wait for approval Merge PR Commit to Trunk Flow Steps surrounding the work: git pull work git commit git push Observations With PRs, before I can even start the work, I’ve performed more steps than the entire trunk flow. If PRs contain valuable discussion, they can provide value....