Using git to show a quick summary of all files altered on a branch

Assuming the branch has not yet been merged and working against master this 'lil beauty provided a neat list of all the actions:
git show --stat --oneline HEAD...master
And if that's not enough this shows the files altered on that branch:
git diff --name-status HEAD...master