Tagged Questions

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: ...
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 ...
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" ...
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
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
2answers
676 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
551 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 ...
1
vote
1answer
50 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
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
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
165 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
1answer
589 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
129 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
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
213 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
555 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 ...