I have a repository that has mounted another repository with
git subtree add -P some/path otherremote otherbranch
development has gone on with some local changes, but also with a few rounds of merges done with:
git fetch otherremote
git subtree merge -P some/path otherremote/otherbranch
git commit
Now I want to get a diff between the HEAD of otherremote/otherbranch and the tree at some/path. How can I do this?