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