On Wed Aug 30 13:19:35 2023 +0000, Nikolay Sivov wrote:
What do you mean by that? How does that affect reviewing?
Briefly, instead of doing ``` git rebase master git commit --amend git push -f ``` rather do ``` git rebase master git push -f git commit --amend git push -f ```
This way the "Compare with previous result" from GitLab (or, actually, even `git diff` itself) gives much more useful results, because I can see your changes to your MR alone instead of having it lumped with everything else picked from `master`.