I did following (I simplified this comparing to a reality):
This is a simple git diff
git diff --name-only SHA1 SHA2
Where SHA1/2 are the hashes of the 2 commits at the top of each branch.
Or you can do
git diff --name-only develop...
To compare your branch against the develop branch
develop