On 4/4/07, Alex Bennee <kernel-hacker@xxxxxxxxxx> 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 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html