[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: VS.Net SVN and Web Projects - Big problem

From: Mark Griffiths <mark.griffiths_at_chive.com>
Date: 2004-02-18 07:07:55 CET

> I can say that unless someone has a good fix here, we will
> unfortunately have to abandon SVN. This is unfortunate as I
> really like SVN. I knew it was too good to be true.

It's not the best fix, but we edit svn.exe with a binary editor (vs.net works well).
Search for the string ".svn" and replace with "_svn". Save and deploy the exe to all
clients. There is no need to deploy the modified exe to the server.

If you have any existing working directories, then run the following script to rename all
.svn directories to _svn:

@ECHO OFF
FOR /R %%f IN (.svn) DO IF EXIST "%%f" (
  ATTRIB -h "%%f"
  RENAME "%%f" _svn
)

Editing the exe is not the most graceful solution, but it is somewhat simpler than
building from sources.

Hope this helps
Mark

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Feb 18 07:08:01 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.