I want to do a git diff, but only get a list of the files changed and lines changed per file. I have this:
git diff HEAD..origin/dev --name-only
and I get something like this:
assets/shell.sh
package.json
but I am looking for something like this:
assets/shell.sh 33 lines
package.json 5804 lines
is it possible to get such a summary?