I have written a python check which looks in a folder for (salt state) sls files, and checks for duplicates as they cause a weird error if you don't catch them. The script works fine if I run it in my local git repo, but I want to run it as an external hook on the server so I can enforce the rule on anyone doing the commit (rather than just having them in the .git/hooks folder and asking everyone else to use them and hoping they do). Using this plugin you can set the hook up to run on the server, but when I ran my check on the server it doesn't work because the folder structure isn't like the branch I have locally, it's a git server so we have:
['packed-refs', 'description', 'stash-refs', 'refs', 'branches', 'config', 'FETCH_HEAD', 'HEAD', 'objects', 'info', 'hooks', '.mailmap.new', 'logs']
I asked a colleague and he mentioned he had written a script in another language (perl or ruby) which takes the content of the folder on the server and uses it to build the files in a branch to run the tests on.
I'm trying to find out how to do this in python, or if there is a better way to go about this I haven't considered yet.
I searched around but I'm finding it hard to describe that process in a search!