On 4/4/07, Alex Bennee [off-list ref] wrote:
Is there an invocation of git-diff or another tool that can tell me all
my diffs are present in the big uber-commit of my master branch baseline
release?
You can limit git-diff to the pathnames you touched in your commits
(assuming you now the first commit you sent upstream).
git diff-tree --name-only first HEAD | while read f; do
git diff-tree --shortstat upstream HEAD -- "$f"
done
It is very inefficient, though