Reputation: 39
I am in the need to set up eclipse in a way that I can connect to a SVN and checkout projects or files to a remote location. The remote location is Linux-based, the clients work with windows.
I read a few threads and it seems that it works on console with ssh+svn. But I am struggling badly to make this scenario run in eclipse.
Any hints? I appreciate your help.
Philipp
Upvotes: 2
Views: 2062
Reputation: 15525
Your question sounds to me that you try to solve something, that we don't know yet. So I speculate here a little bit, and I will change my answer if the question gives indication that I was wrong.
So here are sketches of possible solutions that may work for you.
ssh <user-id>@<ip-of-linux-server> <path to eclipse> -display $DISPLAY
There are two variants, and both are valuable:
The easiest way is to mount the file system of the server, so you have access to them locally through a different drive letter. Ask your system administrator how that could be accomplished.
That is the normal way to do it. Install Eclipse with Subversion plugin as usual, checkout from the repository, work locally (even disconnected), commit your changes.
You are then able to test by doing a checkout on the server, build the system there, and do your unit and integration tests there.
I like the solution best with Eclipse on the server, so you use everything that is available on the server, and Eclipse under Linux is totally the same as under Windows. You don't have any steps in between for doing tests, everything is done locally (on the server).
See as well the following questions (and answers):
PS: What I forgot: I think svn+ssh
is just a different protocol of Subversion to do the checkout, update and commit. It is in no way different to using the protocols file://
, svn://
, http://
or even https://
.
Upvotes: 1