Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
128 views

CruiseControl.NET does not execute Subversion hook scripts

On our CC.NET continuous integration server, I have implemented a Start Update hook script that works fine when I check out the source using TortoiseSVN. The hook script is meant to clean the working ...
3
votes
2answers
423 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
53 views

svn hook to generate file from committed files

I have an SVN repository that has trunk/file1.txt trunk/file2.txt trunk/fileR.txt On the server, I have a working copy checkout of trunk ( /var/www/trunk ) owned by user www-data . fileR.txt is ...
2
votes
0answers
44 views

Hook script to block commit of files having a particular string

I have implemented the below code in my hook script file abc-pre-commit.bat to disallow commit if files contain the string cod_bank SETLOCAL SET PATH=C:\Windows;C:\Windows\system32;D:\SCC\SVN146\ ...
2
votes
1answer
138 views

No module named _core when using mailer.py on Windows/Python 2.7

I'm trying to configure and run SVN post-commit hook sending mails. I've downloaded class mailer.py, installed Python 2.7 and svn-win32 bindings for svn. The machine is Windows-7 64 bit, the Python is ...
1
vote
1answer
122 views

SVN Post Commit Hook to Deploy a website

I have been reading for a while and got a few answers, but I just need some more help. I am trying to automatically deploy a website when a certain change set is committed to a branch, so I release ...
1
vote
1answer
59 views

capture data of svn transaction in a text file

How to capture data of svnlook changed command in a text file my pre commit hook is a bat file i tried the below command but i am not able ...
1
vote
1answer
49 views

Adding subversion commit hooks for all repositories

I have a subversion installation with one repository per project and would like to add a few commit hooks that should apply for all the repositories. Is there any way to add a hook for all ...
1
vote
0answers
35 views

Pre-Commit - How to Get User Roles

Hi im trying to validate the user permission on pre-commit. How can i get the user Roles on pre-commit? Please Help!
1
vote
1answer
305 views

SVN: Python Pre-commit script always fails

I have found an example python script and have modified it to do checks for comments in pre-commit. My problem is that the text of the comment as parsed by python always ends up blank. Env: Windows ...
1
vote
2answers
178 views

Commit hooks not printing any error message if script exists with code 0

My pre-commit is calling a perl script commit_log.pl.The script is doing so many pre-checks.Now I am trying to send out a mail after commit approval.We are not able to set up post-commit hooks due to ...
1
vote
2answers
72 views

Does Subversion hook work with file URLs?

I'm trying to test some Subversion commit hooks, but when I use the simplest case - a local repository and the file:// protocol - then the hooks are not executed. I'm on Windows - here's a transcript ...
1
vote
1answer
246 views

Need help with subversion's post-revprop-change hook

I have created post-commit and pre-commit hooks in subversion before but I cannot seem to successfully trigger a post-revprop-change hook. Here's how I post-revprop-change hook (and that's executable ...
0
votes
2answers
41 views

SVN Add file every commit or merge, even if not changed

Can I force SVN to commit/merge a specific file every time even if the file doesn't change? I know you can ignore a file but what about something like 'Always Commit' option? I'm using the revision ...
0
votes
1answer
40 views

Auto update svn using post-commit hook

I am hosting a SVN repository and I want to set up a hook that launches after commit, so post-commit. I see a lot of scripts using C but I am not sure how and if that works on Debian. I have a Debian ...
0
votes
0answers
144 views

Error in svn commit, using pre-hooks (svn server is VisualSVN)

I have setup VisualSVN server on my comp.I am using following perl script as pre-commit hook at my local machine which is driven from "commit-mime-type-check.pl" available on internet @ Link to the ...
0
votes
1answer
41 views

svn pre-commit hook for validating files to be checked in

i have to write a pre commit hook that will not allow developers to commit files having a particular string.can this be done? also whenever files are checked in by developers from their workstation ...
0
votes
0answers
63 views

Trouble with Subversion post-commit hook

I'm trying to get a post-commit hook set up that will sync my subversion repository to a mirror. I have largely follow the instructions here Setting Up A Subverion Mirror Repository Using Svnsync, ...
0
votes
1answer
139 views

Pre-Commit Hook - Validate Filename

im trying to validate a filename on first commit. In the repository i have this files: change1.sql change2.sql [...] Users cant create files whit the same filename. How can i validate this in ...
0
votes
2answers
429 views

Automatically synchronizing a Subversion repository and a Git repository

My project has a Subversion repository on a network file system, and a new team would like to access it using Git, and be able to commit to it and get updates from it. What I have in mind is to ...
0
votes
2answers
230 views

trac-admin with svn post-commit hook causes segmentation fault

I just set up trac 0.12.2 over sqlite on my Fedora box and trac is working fine through the web browser and command line. My issue is with implementing svn hooks where the post-commit hook dies on a ...
0
votes
1answer
110 views

Get First Commit with SVN Hook

HI... Im trying to make a svn hook to check the first commit in repository. SVN Hook dont support "Add". So if i get the first commit, i can simulate the first entery of file in repository. I dont ...
0
votes
1answer
237 views

Subversion merge plugin / post checkin / pre checkout hooks

I would like to source-manage a set of files that are built as zip files, containing XML files. Since currently those files are checked in as is, they are treated as binary files with all obvious ...
0
votes
1answer
691 views

svn post-commit script runs from command line, but not when commiting file(s) to svn

I have a post-commit hook in svn that runs fine from the command line when I run env - ./foo.sh /path/to/svn/repos/ 12345 but when the script is called from svn it does not appear to work. What I ...