I have a Nant script that updates the directory with the latest source code (unloaded from the svn repository), then updates the assembly information and several other files and performs some assemblies.
I want a working copy, including all the changes made (after the assembly is completed), to be included in the tag revision (described in the SVN 4.19 help. Branching / label). This should happen with the command line arguments that run at the end of the script assembly.
The following line is currently used, but it will not accept changes.
svn copy -r 1234 c:\workingCopy http://svnRepository
Need to replace a working copy after the above command and commit the changes?
source
share