← Revision 8 as of 2007-10-11 20:28:09
Size: 4951
Comment:
|
← Revision 9 as of 2007-10-11 20:29:34 →
Size: 5154
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 9: | Line 9: |
If you're remote you can check code out using ssh: | If you're remote you can check code out using ssh. For example, to check out the trunk: |
Line 12: | Line 12: |
}}} Or, to check out a specific branch: {{{ svn co svn+ssh://grenache.ucsd.edu/cellar/common/svn/cytoscape/branches/Cyto-2.5.x_release_branch/ cytoscape_2_5 |
About SVN
The goal of the Subversion (SVN) project is to build a version control system that is a compelling replacement for CVS in the open source community. The software is released under an Apache/BSD-style open source license. Subversion is meant to be a better CVS, so it has most of CVS's features. Generally, Subversion's interface to a particular feature is similar to CVS's, except where there's a compelling reason to do otherwise. [http://subversion.tigris.org/]
In order to access an SVN repository, you must install a special piece of software called an SVN client; SVN clients are available for most any operating system. General SVN documentation is available on this [http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=254&expandFolder=254&folderID=257] and a nice online book can be found here: [http://svnbook.red-bean.com/].
SVN Access
If you're remote you can check code out using ssh. For example, to check out the trunk:
svn co svn+ssh://grenache.ucsd.edu/cellar/common/svn/cytoscape/trunk cytoscape
Or, to check out a specific branch:
svn co svn+ssh://grenache.ucsd.edu/cellar/common/svn/cytoscape/branches/Cyto-2.5.x_release_branch/ cytoscape_2_5
You can check out code anonymously:
svn co http://chianti.ucsd.edu/svn/cytoscape/trunk cytoscape
Note that you are not able to check code IN through chianti. This is meant to be a public resource for people other than cytoscape developers. If you're a cytoscape developer, you should use gamay to check code in and out.
You can also browse the source repository with a normal web browser:
[http://chianti.ucsd.edu/svn/cytoscape]
SVN Access in Eclipse
1. Setup Subversion plugin
[http://subclipse.tigris.org/install.html]
Remote site
For 3.1: [http://subclipse.tigris.org/update_1.0.x]
For 3.2: [http://subclipse.tigris.org/update_1.2.x] (Still beta?)
2. Check out project from UCSD Repository:
File --> New --> Project
- Select "SVN"
- Create new repository. If you have developer account, URL is:
svn+ssh://gamay.ucsd.edu/cellar/common/svn
Otherwise, you can check out project anonymously from:
http://chianti.ucsd.edu/svn
- You can use default values for port number etc.
ID and password: same as CVS id & pw for gammay (not required for anonymous checkout).
3. Check in code
- - Almost same as GUI for CVS. Select "Team" menu item for more detail.
Tips and Troubleshooting
General advice for those who have difficulties getting SVN access in the Eclipse environment. These are not meant to be sequential steps. These are just 4 independent tips that address a range of issues, in no particular order. If just doing #1 works, then you're done. But if not, then #2-4 provide other things to try, leads derived from solutions found in various forums and FAQs.
1. SVN Interface:
In Eclipse, Window>Preferences>Team>SVN. Set SVN Interface to "JavaSVN (Pure Java)"
2. Define SSH Client for Subversion:
Edit C:\Documents and Settings\*user*\Application Data\Subversion\config and add "ssh = C:\Program Files\TortoiseSVN\bin\TortoisePlink.exe" after "[tunnels]" heading.
Set environment variable "SVN_SSH" to "C:\Program Files\TortoiseSVN\bin\TortoisePlink.exe"
3. Request a new password from MikeSmoot. Some old passwords may not work (mine didn't!)
4. Try alternative plugin: TortoiseSVN: [http://www.tabaquismo.freehosting.net/ignacio/eclipse/tortoise-svn/subversion.html]
Common Error Messages:
- Subclipse:
- "tunneling" problem. Solution = see #1 above.
- "malformed network data" = may be password problem
- "std output (err)" issue = may be password problem
What to Check In
In general you should only check in source files and the files needed to compile the source (e.g. library jar files). You should NOT check in generated files such as jar files that you compiled in your project or .class files. Since these files are created directly from the source, there is no need to check them in and is a waste of disk space.
It can also be problematic to check in IDE configuration files. It is OK to check in the configuration file for that particular project, but anything that is specific to your machine (e.g. lists a specific class path) should be avoided since this will not work in other people's configurations.
Creating New Projects
Given the current configuration of our system, it is rare that you should be creating a new top-level project. In general, you will want to add files to an existing project rather than creating a new project. This holds for new plugins or libraries for cytoscape. To add new files, simple check out the existing project, move your new files into the directory that you'd like to add to the project, and then run svn add directory-to-add to add the files to the project.
If you find that you do need to run the svn import command, then please contact MikeSmoot before doing so.