I'd like to fetch the proposed changes of a pull request and put them against my current master branch as unstaged changes, so I can do things like call git diff
and see exactly what they are proposing, poke at it, and then decide whether I'd like to accept the pull request.
I've seen answers here which talk about pulling the changes as a different branch, but then git diff
doesn't show me what they changed.
What is the best way to accomplish what I'm trying to do?