JSP學習筆記 十二 配置CVS

2021-09-05 19:27:10 字數 1285 閱讀 3408

這裡需要兩個軟體,乙個cvs服務端,乙個cvs客戶端。這很類似於ftp,serv-u是服務端,提供ftp服務,cuteftp是客戶端,使用ftp。

我安裝的時候參考了文章《玩轉cvsnt+tortoisecvs 版本控制系統(**)》

安裝cvsnt的過程不是很順利,主要是對cvs的使用者管理理解不了。使用工具cvsnt control panel配置好以後,需要通過dos新增使用者,步驟:

1.cmd進入dos命令列

2.set cvsroot=:pserver:[email protected]:2401/cvscvsuser是指windows作業系統的使用者,沒有需要先建立乙個,並且把該使用者加入到administrators組裡

3.cvs login然後系統會提示輸入密碼,這裡是輸入cvsuser賬戶

的密碼

4.cvs passwd -r cvsuser -a user1cvsuser是指先前使用的windows作業系統的使用者,user1是指要建立賬戶的使用者名稱,然後系統提示輸入新建使用者的密碼,新使用者就建立起來了

然後安裝tortoisecvs,安裝完後,電腦的資料夾右鍵會多出兩個選單。

專案的發布:

1.選擇要發布的資料夾,右鍵cvs->make new module,輸入sever:127.0.0.1,port:2401,repository folder:/cvs,user name:cvsuser,module:modulename,確定

2.右鍵cvs add contents

3.右鍵cvs commit 提交

專案的獲取:

1.第一步跟專案發布的步驟一樣,差別是在make new module的時候,fetch list選擇乙個剛才建立的module

2.右鍵cvs update 獲取

在eclipse中獲取專案:

1.選單window->open perspective->other...->cvs pepository exploring

2.在cvs perspository exploring介面,右鍵new ->pepository location...

3.host:127.0.0.1,pepository path:/cvs,user:cvsuser,connection type:pserver,finish

4.展開當前建立的節點,定位到head->對應專案,右鍵,check out

到此,乙個簡單的cvs流程就完成了,我也是剛用,可能會有不對的地方:)

CVS學習筆記

cvs伺服器配置 1 安裝cvsnt for windows版安裝程式。2 設定path到cvs.exe目錄,這很重要。3 設定cvs倉庫,在控制面板中,開啟cvs for nt,在repositories頁面,建立倉庫。4 在作業系統共享倉庫資料夾,且設定可寫許可權。5 建立使用者,cvs沒有獨立...

JSP 學習筆記

tomcat 配置 1.部署 web 應用 部署 web 應用到某個目錄後,要在 catalina home conf server.xml 檔案中新增相應條目並重啟 tomcat 才能生效。比如將乙個 web 應用專案 aaa 部署到了 d aaa,則需要在上述 server.xml 檔案中 與 ...

Jsp 學習筆記

1.在html中引入jsp,輸出100 在html中嵌入jsp out.print 100 2.使用變數 string today 2018.5.24 今天是 today 3.設定頁面資訊 獲取頁面資訊 該網頁資訊為 getservletinfo 4.使用include指令包含多個jsp頁面 當部分...