CVS Eclipse: Difference between revisions

From FreeMind
Jump to navigationJump to search
No edit summary
 
(+cat)
 
Line 32: Line 32:
  Use default port:
  Use default port:
  <tick>
  <tick>
[[Category:Development]]

Latest revision as of 19:20, 24 September 2009

Using CVS with Eclipse

In Addition to Using CVS from within Eclipse guide by Bob Alexander, this side provides some up-to-date data. Namely, the host has changed from cvs.sourceforge.net to freemind.cvs.sourceforge.net .


SSH-Tunnel

You may be in need of a tunnel, if the following doesnot work: @localhost $ telnet freemind.cvs.sourceforge.net 2401 A prerequisite is that you have ssh-access to a machine whith a free internet access. This machine is "good", if the above mentioned 'telnet' works on it. And this is what you have to do to build the tunnel:

@localhost $ ssh -A -N -L 2401:freemind.cvs.sourceforge.net:2401 you@machine_with_free_internet_acess &

Then, on your localhost, the telnet above should work. Then you can checkout freemind:

@localhost $ cvs -d:pserver:anonymous@localhost:/cvsroot/freemind checkout freemind 

Eclipse with SSH-Tunnel

Eclipse-Configuration: Under 'CVS-Repositories' (look here for details) :

Use a custom label:
:pserver:anonymous@localhost:/cvsroot/freemind
Connection type:
pserver
User:
anonymous
Password:
<leave blank>
Host:
localhost
Repository path:
/cvsroot/freemind
Use default port:
<tick>