|
|
|
|
|
by polyphonicist
2313 days ago
|
|
> If you share a development branch with someone, then you should prefer merging over rebasing Your parent comment is suggesting rebase only for pulling latest changes in master into your pull request. For merging someone's pull request to the team's master, sure use a merge commit. But if you are working on a pull request and while you are working on it, the team's master gets updated and now you want to base your work on the recent master, by all means, use git rebase. That is what it is meant for, to rebase your work on another work. It's in the name itself. Right tool for the right job. |
|
It boils down to: what you are doing on your own branches is your thing, but when interacting with shared ones do so with some professionalism and decency.