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

Re: [TSVN] TortoiseSVN - FAQ

From: Nick Gilbert <nick_at_x-rm.com>
Date: 2005-04-12 11:23:24 CEST

> *BIG* mistake because now I cannot rename it back to .svn (windows does
> not allow you).

You can rename it back via the command line or in a batch file. It's
only "Explorer" that doesn't like it.

You don't need to write a "small app". Why not just use a batch file
like the following to rename all the .svn folders in a tree at once:

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

Nick...

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: dev-help@tortoisesvn.tigris.org
Received on Tue Apr 12 11:25:36 2005

This is an archived mail posted to the TortoiseSVN Dev mailing list.

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