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

Re: [PATCH] Case change FAQ (was Re: Change case on a filename in wc under Windows?)

From: Folker Schamel <schamel23_at_spinor.com>
Date: 2003-12-22 17:58:26 CET

>>> 1) TSVN Rename file.java to _file.java.
>>> 2) TSVN Commit the parent folder. That logs an ADD _file.java and DELETE
>>> file.java.
>>> 3) TSVN Update all other working copies.
>>> 4) TSVN Rename _file.java to File.java
>>> 5) TSVN Commit the parent folder.
>>> 6) TSVN Update all other working copies.
>
>
> What about the following (should work for TSVN, too):
>
> 1) svn commit (if necessary)
> 2) svn mv -m "qqq" svn://path/to/file.java svn://path/to/File.java
> For each working copy:
> 3) svn update file.java (will remove local file.java)
> 4) svn update (will receive File.java)
>
> Advantage:
> No _file.java, and other users can perform
> step 3+4 later at any time.

The following is better, because it works better when
having multiple such files:

1) svn commit (if necessary)
For each file to change:
2) svn mv -m "qqq" svn://path/to/file.java svn://path/to/File.java
For each working copy:
3) svn update * (will remove all local file.java files)
4) svn update (will receive all File.java files)

Folker

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Dec 22 18:00:38 2003

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.