How to get bytecode from revisions of git

58 Views Asked by At

I am working on a research project. I need to run findbugs over transactions of git repository. I need to get bytecode (compiled version) of each revision.

I wonder whether or not there is an infrastructure helps me for example by getting revisions from git repository and compile them. Or in case i should do it myself what should i do?

Would you please help me with referring to a tool or instructions?

I look forward to hearing from you.

Best regards, Zahra

1

There are 1 best solutions below

2
On

It's likely that there are existing tools to help with this, but you could do this fairly simply with something like the following (assuming *nix):

for rev in $(git rev-list master); do
    git checkout $rev
    # Compilation steps here
done