How to find all modified files since the last build in GIT? I want to create not only the modified files in the main editor, but also all the modified files that were changed before this, as well as after the last successful build.
git show --pretty = "format:" - name-only will only build files with un-commit. Thus, I need to create for all modified files in different commits since the last successful build.
For example, the last build was done in Jenkins with X SHA-1 id, and after that there are 3 more fixes on it. So, my goal is to check the entire repository database to the head, and then find out a list of all the files that were changed after the X SHA-1 id, which are 3 commits on top of the last commit on the X SHA-1 id?
thanks
source share