Open chr15t0ph opened 2 years ago
Thanks. When I have time I might look into this.
In my case I've got warning:
warning: inexact rename detection was skipped due to too many files.
warning: you may want to set your diff.renameLimit variable to at least 656 and retry the command.
and had to add:
RUN git config --global merge.renamelimit 0
RUN git config --global diff.renamelimit 0
Built with:
docker build -f ./gitinspector.Dockerfile -t gitinspector:local .
Command used for TypeScript/React project:
$ repo_full_path=~/pj/myrepo
$ docker run --rm -v $repo_full_path:/repo gitinspector:local --format=html --grading --since="01.03.2020" --file-types=ts,tsx > foo.html
Hi! Thank you for your great tool!
Could you please add a Dockerfile to your repository? And deploy latest versions to docker, e.g., as ejwa/gitinspector:latest. The last version on Dockerhub is from Felix Hummel in version 0.4.4 and I would like to get the current version!
This Dockerfile could be used as template for you:
Use Case
I am a lecturer in a Windows environment, applying gitinspector to support grading. I will use docker to easily run gitinspector under windows (currently with felix/gitinspector:0.4.4). I give you an example execution (with the Dockerfile from above, respecting the set workdir and entrypoint):
In the example, I assume that you would deploy to Dockerhub as ejwa/gitinspector:latest and use that one (instead of the felix/gitinspector:0.4.4 one):