I have a patch file containing the output from git diff. I want to get a summary of all the files that, according to the patch file, have been added or modified. What command can I use to achieve this?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

patchutils includes a lsdiff utility.

link|improve this answer
feedback

grep '+++' mydiff.patch seems to do the trick.

I can also use git diff --names-only which is probably the better approach.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.