I am looking for a simple git command that provides a nicely formatted list of all files that were part of the commit given by a hash (SHA1), with no extraneous
git
I use this to get list of changed files in merge commit
λ git log -m -1 --name-only --pretty="format:" configs/anotherconfig.xml configs/configsInRepo.xml
or
λ git log -m -1 --name-status --pretty="format:" A configs/anotherconfig.xml M configs/configsInRepo.xml