I often need to sync projects between the notebook and the subversion server at home.

I do it by using the IDE, which is annoying.
(I have to start it, open all projects because I don't remember on which projects changes were made, update them all, close the unnecessary ones, ...)

Are there some tools out there to update many projects automatically (perhaps just a script)?

What would happen on repository-vs-localcopy conflicts?

link|improve this question

whats your environment/os? – Matt Aug 13 '09 at 13:43
OS is linux, but I would prefer a multiplatfom solution. – linux_is_for_desktop Aug 13 '09 at 15:59
feedback

3 Answers

up vote 2 down vote accepted

you could easily create a script for this using the svn update command line. in case of conflicts it will pause and wait for your input as to how to resolve the conflict. You can also try svn help update to see the switches you can pass along to it.

link|improve this answer
feedback

Try creating a script it is easy with DonationCoder's Drag and Drop Robot You'd just create a list of folders by dragging them onto the program and run the svn up command for each of them. (In theory, I haven't used the program)

link|improve this answer
feedback

You can create a script if you have svn client installed locally. The script would look something like this: svn update C:\SourceFolder for each folder.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.