Before I make a change to my PR, as requested by the maintainers, I do a git pull --rebase upstream master
to place my commits on top of other new commits in the code base.
However, this seems to pollute the diff of my PR with changes from other commits.
Why is this happening?
Since the base of my PR is upstream/master
, and I have just git pull --rebase upstream master
, shouldn't the diff only show my code?