Hi,
Is there a subversion command that will cleanup the previous workspace before checking out the new workspace ?
Last updated
Last updated
hmagnanao;167880I guess I always have to remove the old workspace before getting a new checkout or export.[/QUOTE] Not necessarily, you could always check out to a new folder with a different name if you needed to. Just an option though. [QUOTE=hmagnanao;167880]I have a new question. How can I put an output of any svn command to a log file in windows ?I believe if you use the > option to send the output of the command to a file that will work? e.g: svn update > C:\Users\Username\My Documents\SVNUpdateOutput.txt 2>&1 The bit on the end makes sure the error outputs also end up in the text file. If you wanted to capture all the output in a single file, use two greater than symbols and the same file name each time: svn update >> C:\Users\Username\My Documents\SVNUpdateOutput.txt 2>&1 That appends the output to the end of the file. Hope that helps :)
1-7 of 7
You cannot edit posts or make replies: You should be logged in before you can post.