Tagged Questions

2
votes
2answers
66 views

SVN pre-commit-hook, is there a way to set the logmessage in the client window?

thank you for reading my question :) My goal is to modify this message before a commit is fired to the SVN-Server: I already have a start and pre-commit hook (C#), both of them are called when i ...
2
votes
2answers
428 views

Pre-commit hooks in C# with SharpSVN

I'm new to SharpSVN (and frankly--pretty new to C# as well). I've been trying get a simple pre-commit hook working which checks for a comment. (i.e. the commit fails in the absence of a comment) ...
1
vote
1answer
546 views

How to access file information in a pre-commit hook using SharpSVN

I am new to SharpSVN and SVN in general. I am trying to implement a pre-commit hook that when the user commits a certain type of XML file; I am going to need to intercept the file and analyze it to ...
0
votes
4answers
794 views

How can i get access to the SVN pre-commit message using SharpSVN?

i see that all I can set to is %repos% and %txn% how can I use those to get to the commit message (in my case, so i can parse out the ticket number so i can see if it exists in the bug database ...