Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • 1
    Most of your answer looks ok, until this "especially if people properly rebase their work before merging or pushing" Cherry picking and rebasing is essentially the same thing. They both causes history losses and they both invalidate any testing you've done on the picked commits. Rebasing is really just cherry picking on steroids. Commented Apr 21, 2020 at 17:00
  • 2
    @LieRyan: Yup. With the exception in this case that rebasing is done on your own history, but the OP was cherry-picking commits between public branches. That invalidates the testing done by the entire team, not just your own testing. Commented Apr 21, 2020 at 17:55