If I do git log develop..feature it is going to show me the difference between the develop and feature branches using the hash id.
However, I have rebased one of my branches and the commit hashes are now different even when the commits are the same (because the parent is different).
How can I compare the two branches by commit message?
Note: I am aware that comparing this way is not reliable. It isn't the only diff I will be doing to determine the difference between the branches but it will help me identify any extra commits.