Tagged Questions
28
votes
22answers
7k views
Share common / useful SVN pre-commit hooks
What are some common and/or useful pre-commit hooks for SVN?
6
votes
3answers
3k views
Git pre-commit hook : changed/added files
I am writing a pre-commit hook. I want to run php -l against all files with .php extension. However I am stuck.
I need to obtain a list of new/changed files that are staged. deleted files should be ...
5
votes
3answers
201 views
What to stage after a pre-commit hook was run?
For a pre-commit hook that modifies the staged files, I need to figure out what has to be staged after the hook was run.
The pre-commit hook applies some pretty-printing on the files that should be ...
2
votes
2answers
740 views
client side pre-commit hooks in subversion
Is any way to setup pre-commit hooks on the client side with an svn client, for example through eclipse or a command line svn client ?
2
votes
3answers
586 views
Why would my SVN pre-commit hook work locally, but not on commit?
I have the following pre-commit hook to use JavaScript Lint for checking JavaScript files before committing:
#!/bin/env bash
REPOS="$1"
TXN="$2"
ECHO=/bin/echo
GREP=/bin/grep
SED=/bin/sed
...
2
votes
4answers
14k views
SVN Error: Commit blocked by pre-commit hook (exit code 1) with output: Error: n/a (6)
Some weird error cropped up suddenly outta nowhere and is preventing me from checking in my code via TortoiseSVN. I'm using a free account on myversioncontrol.com
This is on a Windows Vista system. ...
1
vote
1answer
511 views
mysqldump schema only, schema update without drop
I'm looking at using the git pre-commit hook to export a MySQL db schema prior to commiting changes so that other developers can update their own databases with a SQL script from the git repo.
By ...
1
vote
2answers
505 views
How does this pre-commit hook fix trailing whitespace?
What is going on in this pre-commit hook? I thought changing files would cause them to be restaged.
#!/bin/sh
#
# A git hook script to find and fix trailing whitespace
# in your commits. Bypass it ...
1
vote
1answer
654 views
Writing a pre-commit hook using SharpSvn. Does it lack svnlook propget?
I am rewriting an older subversion precommit hook. In our company, we need to make sure that binary files are allowed on commit only if they have the property svn:needs-lock set before commit.
I ...
1
vote
2answers
2k views
Is there a windows implementation to python libsvn?
Because windows is case-insensitive and because SVN is case-sensitive and because VS2005 tends to rename files giving them the lower-case form which messes my repositories' history, I've tried to add ...
0
votes
1answer
225 views
I'm trying to call MSTest from a console app inside an SVN pre-commit hook, but getting an error?
I am trying to call MSTest.exe from a simple console app that is executed from inside an SVN pre-commit hook.
If I use TortoiseSVN to Commit, it auto-runs the console app code below.
(skip after the ...
0
votes
1answer
372 views
Running NArrange from SVN pre-commit hook
I am trying to execute NArrange from SVN pre-commit hook using following command:
"C:\Fullpath\narrange-console.exe" "C:\SolutionDir\SolutionFile.sln" /b /t
It returns with an Error: "The hook ...