I would like to execute command line application before each commit (push) to central repository. If application will execute with errors, commit should fail with some message.

I have found some examples of python hooks, but nothing about calling bats or exe.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You just put the exe/batch file as the command for the hook (you probably dont need the bat and exe extensions):

[hooks]
pre-commit.example1 = /path/to/somebatfile.bat
pre-commit.example2 = /path/to/someexefile.exe
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.