Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
22answers
6k views

Share common / useful SVN pre-commit hooks

What are some common and/or useful pre-commit hooks for SVN?
13
votes
7answers
22k views

SVN pre-commit hook for avoiding changes to tags subdirectories

Is there anybody who has clear instructions on how to add a pre-commit hook that avoids changes to tags subdirectories? I already searched the internet quite a bit. I found this link: ...
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
1answer
57 views

What is the format of the deltas in a subversion respository, and how badly can I blow it up if I change them in a pre-commit hook?

Help me do some damage! I'm tired of just a half-dozen Google hits that tell me never to do this. Let's muck things up real good! I'm pretty sure that I can get ahold of the actual files in ...
6
votes
1answer
258 views

User permissions for add/remove a file/folder in svn

I have a requirement that I need to control the permission to add/delete(not read/modify/write) a file in svn. I checked if svn access control has ways to do it. But it does not seems to have this ...
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
172 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 ...
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
5answers
413 views

how to automate or facilitate multiplatform build/test before committing?

Our software is built on linux and windows platforms. Depending on the preference of the developer a contribution is developed and tested on either platform and then committed to our subversion ...
4
votes
7answers
98 views

How to find out what commit a checked out file came from

When I check out a file with git checkout $commit $filename and I forget $commit but still remember $filename, how do I find out what $commit was?
4
votes
2answers
74 views

How do i add a command line prompt as the $EDITOR when committing in svn and git

Is it possible to have a small shell script to replace the $EDTIOR for git and svn? So when a person not familiar with vi or emacs makes a commit and forgets to add a -m "fixed the foo bug" ...
4
votes
2answers
219 views

Temporarily clearing untracked files before commit in Git

Whenever I commit, I worry that I may have missed out a dependency and I'm looking for the simplest way to test my git tree in isolation to ensure whatever is in the git index ("staged") will in fact ...
4
votes
1answer
600 views

Running Django Tests with a Precommit Hook

I would like to run all my django tests using mercurial's precommit hook. Whenever a test fails the commit will be aborted. The goal is to block build-breaking commits as often as possible. edit: ...
3
votes
1answer
438 views

Can a git pre-commit hook add a file to the repo?

I'm keeping a text file of my git log in my working directory, and I have a script that updates it after a commit. This is fine, but the effect of this is that the version that is inside the repo is ...
3
votes
4answers
414 views

Can anyone recommend a pre-commit web based diff viewer for subversion?

Edited to make my requirements a little more clear I would love to find a decent web viewer similar to Trac's changeset page: http://trac.edgewall.org/changeset/10173. The only catch is that I need ...
3
votes
2answers
2k views

SVN Pre Commit Hooks

I am currently trying to extend our already existing (and working) pre commit batch file for committing to SVN. The first part blocks any commit that does not have comments and works as expected. The ...
2
votes
1answer
52 views

In Eclipse How Can I Edit With One Format And Commit With Another

Everyone on my team uses the same formater settings so files in the SVN repo dont have changes based on formatting. The format that was chosen I dislike and I can barely read. Is there a plugin for ...
2
votes
2answers
189 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
2answers
682 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
555 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
13k 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
53 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
63 views

can I use cygwin with bash script to update Android manifest on commit?

I found this link Android: How to make the versionCode update automatically with every build? that contains the following code: #!/usr/bin/env bash ...
1
vote
1answer
475 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
192 views

Can “svnlook cat” be forced to output properly formatted text during a commit transaction?

In writing a pre-commit hook for subversion, I am in a situation where my call to svnlook as MESSAGE=`svnlook cat -t $TXN $REPOS $FILE` results in a returned value which consists of a single, ...
1
vote
1answer
364 views

Form.save(commit=False) behaving differently in Django 1.2.3?

Prior to today, I've been using Django 1.1. To ensure I'm keeping up with the times, I decided to update my Django environment to use Django 1.2.3. Unfortunately, I've encountered an issue. The ...
1
vote
2answers
482 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
72 views

how to commit 'commit log' itself in same svn version?

It might sound unnecessary, but let me explain my problem first. Probably then it would make sense. Few artists keep updating images based on clients' change requests. An artist makes changes ...
1
vote
2answers
166 views

Best practices with SVN for files that always “change” with no change

We have a project that references files in a Common-directory. Whenever that project is opened or compiled, these files are copied. Because the timestamp changes, Subversion sees that as changes. I ...
1
vote
2answers
2k views

Git Version numbering with a centralized workflow

We are using Git with a central server, and our code needs to include a version number in a file. The way this is currently done is like this: A new developer does a "git clone" In his local copy, ...
1
vote
1answer
590 views

SVN - How do I intercept and alter or add files on pre-commit?

First of all I'm not sure this is even possible, however I need to know how it can be done and if not why not? I want to create a C# application that runs at the appropriate time during the commit ...
1
vote
1answer
641 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
2answers
135 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
87 views

Hosted Solution for Version Control — with pre-commit hooks?

Can anyone suggest a hosted solution for SVN, Git, or Mercurial (preferred) that offers the ability to configure certain pre-commit hooks? For example, when JS is committed, I'd like it to pass ...
0
votes
1answer
50 views

How to test current commit and not the working tree?

I am trying to set up a pre-commit hook to test my repo before any commit goes through but I can't find how to make sure that only HEAD (with patches from the current commit) are tested and not the ...
0
votes
2answers
76 views

Is there a way to auto-resume in a subversion commit?

I ofen get transaction errors when committing. These, as far as I know, are as result of commits that fail halfway through. Is there a way, preferably using a GUI such as TortoiseSVN, that will ...
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

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
556 views

SVN Hook “Could not MERGE resource” and Access Denied Error

I’ve got an SVN hook written as a .NET console app and running on VisualSVN server which is causing some problems. Every time I try to commit (either remotely with Tortoise or locally via command ...
0
votes
1answer
2k views

Set up svnperms pre-commit hook

I'm trying to implement svnperms into a repository, but am having difficulty with a few things: pre-commit has the execute permissions: -rwxrwxr-x 1 svnadm svn 3018 May 27 10:11 ...
0
votes
1answer
370 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 ...