To get list of files that was modified on git follow these steps:
- Get initial and final hash commit
git log --stat
2. Use git diff as follow
git diff --name-only <initial hash> <final hash>
To get list of files that was modified on git follow these steps:
git log --stat
2. Use git diff as follow
git diff --name-only <initial hash> <final hash>