DEV Community

Discussion on: How do y'all patch other people's PRs in your local dev env?

Collapse
 
ryaninvents profile image
Ryan Kennedy

I frequently cherry-pick single commits from other branches. If there are more than a couple of commits, I'll rebase (git rebase -i --autosquash, which I have aliased as git ri) and add their commits in with mine. Then once I'm satisfied, I'll rebase again and remove them.