I'm working on a Java project and I need to understand which files have been modified to fix bugs.
The versioning of the project I'm working on is managed through Git.
Until now I have been able to get the commit that was made to fix the bug, however starting from this how can I get the files that have been modified?
I probably have to run the diff
between the commit that was made to fix the bug and another commit, but what is this other commit?
Can I get it by going up the commit graph? If so, how?
All this has to be done in Java ... to interact with GitHub I'm using the jgit
library.