vote up 3 vote down star
1

Is it possible to make svn run some command before every commit? I have some documentation in LaTeX in the repository and would like to have always the latest version of the compiled docs available as a pdf in the repository. The same would go with doxygen docs.

I'd bet that there is some magic svn:something property or something like that, but haven't found anything yet. Thanks.

Edit: Thanks for the answers, but as far as I understand it hooks run on the server. In this case I don't have access to the server (the project is hosted on Assembla). Is there any way to do these things on a client?

flag

4 Answers

vote up 2 vote down check

If you auto-generate the documentation, why put it in the repository at all? You create it every time, so there's no point in having it versioned too (it's generated after all). I'd rather use a pre-commit hook to generate the documentation and put it into a common place to access it than storing it in the repository -- storing it in the repository is creating redundancy which should be avoided from my point of view.

(And I agree that pre-commit hooks should not modify what's being committed :)

link|flag
vote up 7 vote down

You can easily do the reverse. Create a shell script that runs svn commit after building stuff.

link|flag
vote up 0 vote down

Use a pre-commit hook

link|flag
pre-commit hooks should not modify what is being committed. See svnbook.red-bean.com/nightly/en/… – Sander Rijken Apr 26 at 16:12
2  
Absolutely, I'm not aware that that is what I suggested. As far as I understand the questions was about how to trigger automatic generation of documentation. – Alex Spurling Apr 26 at 16:52
vote up 1 vote down

All of these actions are controlled on the server side. Look into the repository directory and you'll find a hooks folder with a ton of sample scripts. You want the pre-commit hook.

Keep in mind that if you are running the server on windows, that these scripts are executed with no environment, so don't assume that a path is set and use absolute paths.

link|flag
1  
pre-commit hooks should not modify what is being committed. See svnbook.red-bean.com/nightly/en/… – Sander Rijken Apr 26 at 16:13

Your Answer

Get an OpenID
or

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