Tagged Questions

14
votes
1answer
913 views

Svn pre-commit hook to disallow svn:mergeinfo on non-root directories

I would like to use a pre-commit hook that prevents developers from setting svn:mergeinfo on non-root directories. That is, I want to enforce that svn:mergeinfo can only be set on directories like ...
8
votes
4answers
118 views

How do I block php debug output from being committed in svn?

I would like to block debug functions var_dump, print_r, etc... from being commited to the repo so that QA can go over things and not report bugs like "There is a huge block of text on all of the ...
6
votes
2answers
2k views

Automatically add svn keyword properties for new files (server-side)

I want to add svn properties (like svn:keyword=Id Date Rev Author) to files upon commits of new files. For this to work there may be two main options: Client-side: altering the autoprops in the ...
5
votes
0answers
74 views

Detecting branch reintegration or merge in pre-commit script

Within a pre-commit script, is it possible (and if so, how) to identify commits stemming from an svn merge? svnlook changed ... shows files that have changed, but does not differentiate between ...
5
votes
3answers
494 views

How to make a pre-commit hook that prevents non-UTF-8 file encodings

Is it possible to make a precommit hook for git or svn that can reject files not committed in a specific encoding? I have worked on several project where it seems to be a problem to stick to a ...
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 ...
4
votes
3answers
467 views

SVN Pre-commit hook for temporarly commented out code (in java)?

It just happened to me that I commented out a line of code for testing reasons and ended up checking the code back into the repository with the commented line. E.g. I set a rule for a job in Eclipse ...
3
votes
2answers
407 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]], ...
3
votes
3answers
420 views

How to send stdout to the user when running SVN pre-commit hook

I have a pre-commit hook for SVN which run error-checker program and aborts commit in case of problems. stderr is redirected to the user initiating commit in case of problems. But I would like to send ...
3
votes
2answers
591 views

SVN pre-commit hook to reject Python files with inconsistent tab usage

The Python interpreter can be started with -tt to raise a TabError exception if the interpreted file has inconsistent tab usage. I'm trying to write a pre-commit hook for SVN that rejects files that ...
3
votes
5answers
1k views

How to implement SVN pre-commit hook with best performance?

We have the following tools in place: Subversion (Version 1.5.9) Polarion (version 3.2.2) Polarion is based on Subversion, so on every action that changes anything (which is often the case), ...
3
votes
2answers
1k views

Subversion: how to remove property on commit

My situation is this: I have a Subversion server set up at my home, and we also use Subversion at the company where I work. At work, we use the lock/edit/unlock model (mainly because we are ...
3
votes
5answers
556 views

Subversion Tagging and Security

I have set up an SVN repository from scratch, and I have successfully tagged some of my releases using the SVN copy command. I used the SSPI auth plugin for apache, so our developers just hit the ...
2
votes
0answers
43 views

Diff transaction tree against another path/revision

In a pre-commit script, how can I get a diff of the committed changes against an arbitrary path/revision within the same repository? For example, when changes to files within /trunk are commited, I ...
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
1answer
41 views

Adding reviewer name automatically to the source files in subversion

I'm not an expert in subversion, and would appreciate very much for any hints on the following problem. I want to add a review name automatically into a commented section in the header of the Java ...
2
votes
1answer
90 views

subversion pre-commit hook that requires user type 'y/n' in console?

I have a pre-commit hook working that checks that the message was not empty and requires at least x number of characters. We are using JIRA for tracking issues and are 'tagging' our issues in the ...
2
votes
2answers
110 views

Does “svnlook propget” work?

Okay take a look at the following: 1: $ svnlook changed -r2 svn_repos/ _U trunk/ 2: $ svnlook proplist -r2 -v svn_repos/ trunk foo : bar 3: $ svnlook propget -r2 svn_repos/ foo trunk ...
2
votes
1answer
274 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
188 views

SVN - Get commit size in start-commit hook?

Actually, I check the size of a commit in the pre-commit hook. But all the files are commited before I can refuse the commit in pre-commit. For example, if the size limit is 10 MB and the user sends ...
2
votes
1answer
266 views

pre-commit hook validating c++ code

Today I've updated our repository and tried to recompile it (it's a c++ application). It doesn't compile. My first reaction was to kill my coworker, but because I can't do it I need to find another ...
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) ...
2
votes
2answers
146 views

SVN hook script conflict

I am trying to write a pre-commit hook script that will alter a specific svn-property of a folder/file. The script looks fairly similar to the one that is documented in the svn book. I figured out ...
2
votes
2answers
1k views

How to set a trigger to prevent commits to SVN with mergeinfo property?

I'd like to avoid creating svn mergeinfo property on anything but the root of branches. We have a trunk branch and some other branches. Assuming I know absolutely nothing about svn triggers, what ...
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 ...
2
votes
3answers
408 views

How can I access the commited file from a Subversion pre-commit hook in Perl?

I need to do the following: Write pre-commit hook in Perl Hook should check all files being committed for presence of some text, and fail if that text is not found Basically, I need an example of ...
1
vote
1answer
51 views

SVN pre-commit hook to validate subdirectory name only in shell script

I am trying to o add a pre-commit hook that validate sub-directory name in yyyymmdd format.It should be applicable to specific directories only not to whole project folder.Please help to write the ...
1
vote
1answer
47 views

SVN pre-commit hook failure

below is my code for a pre-commit hook to check for text and an open trac ticket. the text check work but when the assignment happens to get the text from svnlook and place it into the variable $LOG ...
1
vote
1answer
76 views

Subversion: Get ip-address of user in pre-commit hook?

We're hosting a subversion repository for distrubuted software development. So non-employees have access to some of our sorce code. Our company's IT security policy requires us to virusscan all files ...
1
vote
3answers
54 views

How can I require that two files be included in the same subversion commit?

I develop projects with databases which are maintained as a MySQL workbench file, which is a binary file. Since you can't easily tell the difference in a binary file between to commits, it's required ...
1
vote
2answers
99 views

SVN Pre-commit hook to be triggered for a particular folder

One of our client's SVN repository has quite a bunch of projects under the single repository. Now I want to check coding-standard for one of the project via pre-commit hook. If I configure the ...
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 ...
1
vote
3answers
869 views

PHP codesniffer (phpcs) - how to allow override when using as part of a svn pre-commit hook?

We have a PHP 5 web application and we're currently evaluating PHP CodeSniffer in order to decide whether forcing code standards improves code quality. We use subversion for our code repository and ...
1
vote
1answer
180 views

svnlook always returns an error and no output

I'm running this small C# test program launched from a pre-commit batch file private static int Test(string[] args) { var processStartInfo = new ProcessStartInfo { FileName = ...
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
2answers
35 views

Determining base revision of transaction in pre-commit

I am writing a pre-commit hook where I would like to enforce some rule based on the content of a file before the transaction. Therefore, when a transaction begins, I would like to svnlook cat the ...
0
votes
1answer
44 views

Why does iconv exit with error when reading from SVN transaction and not from SVN revision?

%% Problem solved and the code below acts as expected %% I'm trying to write a SVN pre-commit hook in Bash that tests incoming files for UTF-8 encoding. After a lot of string juggling to get the path ...
0
votes
1answer
71 views

How to check if files committed to SVN is encoded in UTF-8 with pre-commit hooks?

i'm trying to write a SVN pre-commit hook script in Linux Bash that will reject a commit if the files can not be parsed as UTF-8. So far I have written this script: REPOS="$1" TXN="$2" ...
0
votes
1answer
79 views

How can I debug a Subversion pre-commit hook script?

This seems to be very basic question but I am knocked out. How to test those scripts which one has written for hooking purpose. As we know that script is running in background and only error is ...
0
votes
2answers
133 views

Users validation in SVN pre-commit hook

Found one of the useful SVN pre-commit hook in SVN pre-commit hook for avoiding changes to tags subdirectories by mcdon. I want to add the validation check on the user before committing. Can I do ...
0
votes
1answer
190 views

SVN pre-commit issue

I found this script on the net and few ppl had said that it was working for their repository. The script is to allow a pre-commit check to enforce checking of comments while checking.. The problem ...
0
votes
1answer
86 views

Compiling CoffeeScripts on SVN Pre-Commit

I am working on an application for a client. The client will also be developing the app after I finish the project, so I need to make it easy for them to do so. I have been using CoffeeScripts to ...
0
votes
1answer
47 views

How to force valid properties & values to be set on all files being added/updated in SVN?

Is it possible to force a user who is either committing a change or adding a new file to set valid values for svn:keywords (e.g. Date, Author, & URL)? It would be great if this behavior could be ...
0
votes
2answers
290 views

Way to use SVN pre-commit hooks to keep developers from forgetting to svn add particular newly created files

Is there any good way to use svn pre-commit hooks etc. to keep developers from forgetting to add a file? Specifically I would like the commit to fail if the user has a local to them unversioned file ...
0
votes
1answer
214 views

Wrapping an SVN Python hook in a Windows batch file

I have an SVN pre-commit hook that previously resided on a Linux server. I'm now trying to move things over to a Windows (Server 2003) server. This hook was written in Python, which worked fine on ...
0
votes
2answers
498 views

SVN Pre-commit Hook FTP Upload in Windows

I've got an SVN repo running on a Windows machine. I need a script that will upload any committed file to a remote web server. I've read up on pre-commit hooks, but I don't know how to actually write ...
0
votes
1answer
154 views

svn and rST format project

I've some problems committing a rST file like ===== TITLE ===== Chapter ======= Section ------- blablabla I got this error: Transmitting file data .svn: Commit failed (details follow): svn: ...
0
votes
1answer
219 views

Toad for MySQL integration with SVN - Commit fails, comments required

We use Subversion for source control and have implemented a pre-commit hook that checks for comments and does not allow commits without comments. I use Toad for MySQL 5 to manage the DB. It provides ...
0
votes
1answer
118 views

How do I write an error out to the client in a cmd line pre-commit hook app?

I'm writing a pre-commit hook in C# and I know I have to return 1 for failure and 0 for sucess, but I cant get it to write any message out to the client. Currently I'm using static int ...
0
votes
1answer
394 views

Add comment to subversion commit automatically

I've already got my subversion repository set up to require comments of a minimum length to accept a commit. However, I'd like to start tagging those comments with information from our bug tracking ...

1 2