Tagged Questions
5
votes
2answers
7k views
How do I create a SVN Commit Message Template and Hook to Verify
I'm using Visual SVN Server and Tortoise SVN (client) for source control. I would like all developers to standardize on a consistent format for checkin notes.
For Example I want their Commit Message ...
3
votes
2answers
405 views
SVN pre-commit hook encoding
I'm using Python script to implement SVN pre-commit hook:
svnlookPath = 'path-to-svnlook'
f = subprocess.Popen([svnlookPath, 'log', sys.argv[1], '--transaction', sys.argv[2]], ...
2
votes
1answer
271 views
Subversion workflow: force update, build, test before commit
Is it possible to create an svn commit hook that would confirm the working directory has been svn-updated, built and tested before commit? I want to at least ensure that code has been compiled and ...
2
votes
2answers
427 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)
...
2
votes
1answer
452 views
SVN pre-commit script to check for mkdir
I wrote the following pre-commit script for SVN to validate that a user has submitted the minimum amount of information on a file commit. However, when trying to add/delete a directory, now it is ...
1
vote
2answers
273 views
How to automate property setting in SVN?
My subversion repository has a pre-commit hook that requires all files to have a SVN property before its commit.
I am setting this property manually making each addition of files and folders a 2-step ...