【Eclipse】--MyEclipse2014專案共享至SVN資源庫

ZeroWM發表於2015-10-12

  開始進入Java旅程有些時日了,程式碼備份和共享也是十分重要的,下面給大家介紹一下MyEclipse2014如何進行專案共享至SVN資源庫。


一.SVN伺服器的版本和部署

1.SVN分為伺服器端和客戶端

 伺服器端:VisualSVN-Server-2.5.9.msi

 客戶端:TortoiseSVN-1.7.12.24070-x64-svn-1.7.9.msi

 外掛:Eclipse自帶外掛

2.SVN伺服器端部署步驟:

   1).下載安裝,傻瓜式安裝,很簡單

   2).安裝完畢之後,建立資源庫(Repository),將來存放所有專案資源的倉庫,命令如下(cmd下執行)

     svnadmin create d:\SVNRepo\Repo1

     Repo1就為建立的資源庫

   3).資源庫建立完畢之後,找到D:\SVNRepo\Repo1\conf\svnserve.conf檔案開啟,修改

     修改之前為:

     [general]

     ### These options control access to the repository for unauthenticated

     ### and authenticated users.  Valid values are "write", "read",

     ### and "none".  The sample settings below are the defaults.

     # anon-access = read

     # auth-access = write

     ### The password-db option controls the location of the password

     

     ### Uncomment the line below to use the default password file.

     # password-db = passwd

     ### The authz-db option controls the location of the authorization

     修改之後為:

     [general]

     ### These options control access to the repository for unauthenticated

     ### and authenticated users.  Valid values are "write", "read",

     ### and "none".  The sample settings below are the defaults.

     anon-access = read

     auth-access = write

     ### The password-db option controls the location of the password

 

     ### Uncomment the line below to use the default password file.

     password-db = passwd

     ### The authz-db option controls the location of the authorization

 

     注意:anon-access = read

          auth-access = write

          password-db = passwd,每行的前面不能有空格

   4).建立使用者,配置訪問許可權

找到D:\SVNRepo\Repo1\conf\passwd,新增使用者及密碼,建完之後,該使用者就可以向資源庫中提交專案,新增使用者wm,密碼wm

     [users]

     # harry = harryssecret

     # sally = sallyssecret

     wm = wm

   5).啟動SVN伺服器

     svnserve -d -r D:\SVNRepo\Repo1

 

二.MyEclipse2014外掛的安裝

1.選擇MyEclipse的選單 Help--Installfrom Site,得到Install視窗,如下圖。點選Add按鈕,彈出Add Repository對話方塊。


2.在Add Repository中填寫如下內容:

svn

http://subclipse.tigris.org/update_1.10.x

然後點選ok按鈕,即可進行svn外掛的自動更新。


3.顯示Subclipse和SVNKit兩個外掛內容,選中,點選Next


4.選擇Next



5.選擇I accept 並選擇finish按鈕


6.等待安裝


7.有警告,直接選擇OK就可以了。


8.出現如下介面後,選擇Yes,即可自動重啟MyEclipse。


9.開啟MyEclipse選單Windows下面的Preferences,如果Team下面顯示SVN,則外掛安裝成功!




三.建立專案

右擊專案,選擇Import,選擇從SVN檢出專案。



四.將專案共享到SVN資源庫伺服器

 1.選擇Window--Show View--Other


2.選擇SVN資源庫研究


3.下面的檢視中,顯示SVN資源庫,右擊檢出為,就可以檢出資源庫中的程式碼了。



五.總結

.NET和Java的SVN的安裝和配置幾乎相同,不同的是外掛不同,Java多了一個SVN資源庫的概念。


相關文章