Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
1answer
912 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 ...
8
votes
5answers
1k views

Can a Git hook automatically add files to the commit?

I'd like to add an automatically generated file to the same commit using a pre- or post-commit hook in Git, dependent on the files that were modified in that commit. How would I go about this? I've ...
6
votes
2answers
312 views

git: Can I stash an untracked file without adding it to the index?

A related question How do you stash an untracked file? was answered with "track the file." This doesn't work for my particular needs, however. I'm trying to stash everything that isn't in the index ...
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 ...
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
73 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
2answers
168 views

How can I share a commit-hook in mercurial with all fellow developers?

we are working with mercurial and now we would like to introduce precommit hooks to keep the code clean. We would like everyone to somehow get the hooks, but we would also like to be able to update ...
5
votes
1answer
612 views

Pre-commit hook for Git when Hudson build has failed

I'm trying to figure out how to write a pre-commit hook for Git that checks the status of my Hudson build. If the previous build failed, it should disallow anyone from committing without first writing ...
5
votes
3answers
492 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 ...
4
votes
2answers
971 views

Mercurial hook to disallow committing large binary files

I want to have a Mercurial hook that will run before committing a transaction that will abort the transaction if a binary file being committed is greater than 1 megabyte. I found the following code ...
4
votes
2answers
322 views

How do you access the commit message in a Mercurial in-process hook?

I've been trying def debug_hook(ui, repo, **kwargs): changectx = repo[None] ui.status('change.desc: %s\n' % changectx.description()) return True But it always prints an empty string. Is ...
4
votes
5answers
1k views

Pre Commit Hook for JSLint in Mercurial and Git

I want to run JSLint before a commit into either a Mercurial or Git repo is done. I want this as an automatic step that is set up instead of relying on the developer (mainly me) remembering to run ...
3
votes
1answer
213 views

Mercurial Pre-Commit Hook: How to hook to python program in current directory?

I'm trying to create a Mercurial hook that runs when the commits are being pushed to the main repository. I created a python script as given below: # commit.py from mercurial import ui, hg from ...
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
89 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
109 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
272 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
150 views

Why doesn't my Git pre-commit hook trigger in a cloned repository?

I just wrote small pre-commit hook to perform my custom action. My central repository is on a Solaris server and HTTP enabled. /apps/opt/git/myrepo.git I edited pre-commit hook and modified as ...
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
1answer
526 views

CSSTidy, HTMLTidy, JSlint pre-commit hooks(Hg) - automation tools

I am looking for a way to test/validate my html, css, js before they are committed to a repository. Is there any way to automate this process. Ideally, I would like to have the ability to exclude ...
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
5answers
2k views

Use the commit message in a CVS pre-commit hook

Is it possible to use the commit message in a pre-commit hook in CVS? The CVS server is running remotely, and I access it using pserver. Ideally, I want to allow the commit if the files pass the ...
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 ...
2
votes
5answers
4k views

Escaping a backslash in Batch File using FINDSTR

In my svn Pre commit hooks I use findstr to block certain file types beign committed. I now want to extend this to directories, in the first instance \obj\ directories however I am having problems ...
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
81 views

Use hook to force specific format of git commit message

I want to use a git hook to force commit messages to comply with a specific format (they should end with #number). I've tried installing this hook, also referenced here, but I keep getting 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
57 views

Riak pre-commit hook in Erlang?

How would I write a pre-commit hook to change all of the letters in the value of my key/value pairs to be ALL UPPERCASE in a particular bucket?
1
vote
1answer
46 views

git tracking one file changes

We have a large repo and a lots of commiters. I want to track history of a single file. Whenever someone changes it (push changes to my central repository), I get the email with diff and author name. ...
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
1answer
56 views

How can I propogate my git configuration/hooks?

I recently decided that I wanted all people who commit to my repository to fill in a simple commit log. Basically I want them to fill in a form to the commit message. A quick search found me: How ...
1
vote
3answers
204 views

git precommit hook to ensure HEAD is up to date from master repo

I am moving my team over from an old CVS repository to using git. I was hoping to add in a precommit hook to ensure before a commit is done locally (and pushed) each person has an up to date repo. ...
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 2