CVS+Eclipse的基本使用方法

1.           首先安装cvsnt-2.0.58d版本的CVS服务器。

2.           安装完成后打开服务控制器:Service control panel,我们可以看到服务已经启动。在Repositories面板中添加我们的CVS服务器的仓库,这样在D盘下建立一个名叫CVS的文件夹,添加之后CVS会自动在该文件夹下创建一个CVSRoot的文件加目录。在Compatibility面板中选中Respond as cvs ...这一选项这是Eclipse使用必须的。

3.           给CVS设置环境变量:变量名:CVSRoot         。 变量值:D:\CVS,就是我们建立的CVS服务器的仓库的位置。打开命令行控制台,测试是否设置成功。

4.           设置CVS服务器的配置文件,进入CVSRoot目录修改Config文件来实现CVS独立验证模式

# Set this to 'no' if pserver shouldn't check system users/passwords
# SystemAuth=yes

修改为

# Set this to 'no' if pserver shouldn't check system users/passwords
# SystemAuth=no

5.          在CVSRoot目录下建立passwd文件,添加用户CVS用户: cvsadmin

6.          重新启动CVS

7.          CVS修改用户密码:D:\CVS\CVSRoot>set cvsroot=:pserver:[email protected]/cvs

D:\CVS\CVSRoot>cvs login

loggin in to:pserver:[email protected]:2401:/cvs

CVS password:

D:\CVS\CVSRoot\cvs password cvsadmin

Changing repository password for [email protected]

new password:***

Verfiy password:***

你可能感兴趣的:(eclipse,cvs)