I have looked at various SO answers on using git diff and git revisions (HEAD, ORIG_HEAD, FETCH_HEAD, etc.) and I still haven\'t found an easy way to list the c
You can diff the current branch from the branch start point using:
git diff (start point)...
Where (start point) is a branch name, a commit-id, or a tag.
Eg if you're working on a feature branch branched from develop, you can use:
git diff develop...
for all changes on the current branch since the branch point.
This was already mentioned in a comment, but I think it deserves answer status. I don't know what it will do since last rebase.