I have a dump file (Your_dumpfile.dmp) and I am trying to use svneverever to check the format of the repository to help write rules for svn2git.
Svneverever sounds like a great tool, however, there isn't really any good documentation on how to use it.
So far I have installed it following https://github.com/hartwork/svneverever, and I have installed pysvn in the process, which is a dependency.
At the moment, when I try and run svneverever --no-progress <Your_dumpfile.dmp file path>, I get the following:
'svneverever' is not recognized as an internal or external command, operable program or batch file.
How can I get the command to work and when it is, from where in my files do I run it from (e.g. in folder where dump file is... etc)?
Update:
I have realised in the svneverever folder, there is no executable.

There are some py files in the other folders. Am I supposed to run these?
This is what is already installed:



One thing about command line tools is that in order for your command line to use them, your command line has to be able to find them.
So in order to use svneverever, you have two options:
1) Specify the path to the executable. i.e.
The caveat to this is that you can simply navigate to this directory by doing:
2) Add the path to wherever you installed svneverever to your PATH environment variable. Your user/system PATH is where your command line looks to find/run scripts, executables, etc. If this is an application that only you use, then you would add this PATH to your user PATH. If all users on your machine is using it, you will need to add it to your system PATH.
With option #2, you never need to specify the PATH or navigate to that directory in order to use it.