svn diff --summarize shows the changes at the file level for a commit. Output it something like:

 M   modified-foo.bar
 D   deleted-file.bar
 A   new-file.bar

Similar to svn status, but for commits. I would be happy with output similar to git status, but for a particular commit instead of the working copy. I know I could fire up gitk to see such a summary, but I want it in a shell.

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

git diff <commit> --name-status

link|improve this answer
Thanks! Faster than reading the man pages! – noah Oct 22 '09 at 13:57
By the way I was using --name-only until now. This is better. :) I also had to look at the help. – Vili Oct 22 '09 at 14:04
feedback

Your Answer

 
or
required, but never shown

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