Programming
[Git] List the files which have been modified between two commits/tags
I needed to know the exact list of files that had been modified between my last two tags:
git diff --name-only v2.0.0 v2.0.1
You can replace the tags by commits:
git diff --name-only SHA1 SHA2
git diff --name-only HEAD~10 HEAD~5
Comments
No comment yet.
A remark, a suggestion? Do not hesitate to express yourself below. Just be courteous and polite, please.