HOWTO Access The CVS Server: Difference between revisions

From Research
Jump to navigation Jump to search
m (Access CVS Server moved to HOWTO Access The CVS Server: improved title)
No edit summary
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
To access our CVS repository, use CVS_RSH="ssh" with URL being :ext:$user@cvs.iat.sfu.ca:/var/cvsroot/$foobar
For those who don't like to read, here is the information you'll need (replace $user with your username and $repository with your repository name):


'''Use CVS_RSH="ssh" with the URL being :ext:$user@cvs.iat.sfu.ca:/var/cvsroot/$repository'''


=== Example for Linux Users ===
== Command Line on Linux ==
Checkout
Checkout
  # export CVSROOT=:ext:username@cvs.iat.sfu.ca:/var/cvsroot/projectname
  # export CVSROOT=:ext:username@cvs.iat.sfu.ca:/var/cvsroot/projectname
Line 9: Line 10:
Update
Update
  # cvs update modulename
  # cvs update modulename
== Eclipse on Windows ==
To checkout a repository with Eclipse, use the Import Project tool from CVS. Enter the information below with Your projectname, and Your username/password
[[Image:eclipse-cvs-checkout.gif]]
Then, select Use an existing module to see a list of which modules you can checkout (they will be listed below).
[[Image:eclipse-cvs-checkout-module.gif]]

Latest revision as of 22:46, 9 January 2009

For those who don't like to read, here is the information you'll need (replace $user with your username and $repository with your repository name):

Use CVS_RSH="ssh" with the URL being :ext:$user@cvs.iat.sfu.ca:/var/cvsroot/$repository

Command Line on Linux

Checkout

# export CVSROOT=:ext:username@cvs.iat.sfu.ca:/var/cvsroot/projectname
# export CVS_RSH=ssh
# cvs checkout modulename

Update

# cvs update modulename

Eclipse on Windows

To checkout a repository with Eclipse, use the Import Project tool from CVS. Enter the information below with Your projectname, and Your username/password

Eclipse-cvs-checkout.gif

Then, select Use an existing module to see a list of which modules you can checkout (they will be listed below).

Eclipse-cvs-checkout-module.gif