i guess your could use the --name-only flag. something like:
git log 73167b96 --pretty="format:" --name-only
i personally use git show for viewing files changed in a commit
git show --pretty="format:" --name-only 73167b96
(73167b96 could be any commit/tag name)