Thread (6 messages) flat view 6 messages, 4 authors, 2016-06-15

Re: How can I easily verify my diffs are in parent branch?

From: Alex Riesen <hidden>
Date: 2016-06-15 22:43:03

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
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help