The triple dot notation solved it for me, since it basically compares the second branch relatively to the first one.
git diff master...feature_branch
Note though that this will only work for committed changes.
If ever you're like me and you're actually cleaning your branches and was wondering how to check if it had potential un-merged content, I highly recommend using
git branch -d feature_branch
Note the -d
(lowercase flag). By passing that if ever you have un-merged content you will receive this kind of message
error: The branch 'feature_branch' is not fully merged.
If you are sure you want to delete it, run 'git branch -D feature_branch'.