Is there a way to limit git diff to changed files?
git diff
I\'d like to see the differences between two commits, but exclude paths that don\'t exist in one or t
You can use the --diff-filter flag to do precisely this. git diff --diff-filter=CMRTUXB master.. should show everything except added/deleted files.
git diff --diff-filter=CMRTUXB master..