hd42
hd42

Reputation: 1771

SVN update in eclipse every day

I'm working on a large project (~200 eclipse projects) which is stored on a remote subversion server. I have to do an update every day (and at least a partial update/sync before every commit). The full update takes quite some time, so I'd like to have my machine do this before I arrive at work. Is there a way to do this in eclipse (3.5 on Windows XP)? Probably an external script calling svn command line tools on the project folders and then starting eclipse could do the job, but I'd like to use the svn tool in eclipse if possible.

Upvotes: 3

Views: 3455

Answers (3)

W Michalik
W Michalik

Reputation: 1

You have to change to JavaHL in eclipse First install in system: subversion-javahl

additional information: https://github.com/subclipse/subclipse/wiki/JavaHL-on-Linux

Upvotes: 0

oshai
oshai

Reputation: 15355

It is possible with subclipse plugin:
goto Synchronize view and choose the menu (the small triangle on the top right). then press Schedule... and there you can define Synchronize automatically and choose on what time.

Upvotes: 1

ocodo
ocodo

Reputation: 30248

You're much better off having this done by an external script, but if you have to do it in Eclipse, use the Eclipse Monkey plugin, which will allow you to do scripting inside Eclipse.

Unfortunately there's not too much info available for Eclipse monkey, but here's an introduction:

http://eclipse.dzone.com/news/introduction-scripting-eclipse

Upvotes: 2

Related Questions