I've made several commits on my branch and now I was to see the changes from when I branched from master. However not the current master as that now has other branches merged in since I originally branched off it.
Similar to Show all commits in a git branch since original branching point from master but that is about the log.
I did try
git diff --boundary master..
but I still see a lot more changes than just mine.
EDIT: I'm really hoping for a way that doesn't require any knowledge of SHA's or how many commits were made. If I don't need them I can automate and teach and automate and alias it more easily and trouble-free.
git diff my_branch_name...master
seems close but is not correct.