Technically Feasible

Git: changed files between two commits

Likeness of Michael Oldroyd
Michael Oldroyd
⚠️ This content was imported from a previous incarnation of this blog, and may contain formatting errors

If you need a list of all modified files between two commits, you can use the following command;

git diff --name-only SHA1 SHA2

You can also pipe the output to a file (in the parent directory) as follows;

git diff --name-only SHA1 SHA2 > ../filename.txt

Via http://stackoverflow.com/a/1552353

Image of me

Michael Oldroyd

Michael is a Software Engineer working in the North West of England.