【Eclipse】--MyEclipse2014專案共享至SVN資源庫
開始進入Java旅程有些時日了,程式碼備份和共享也是十分重要的,下面給大家介紹一下MyEclipse2014如何進行專案共享至SVN資源庫。
一.SVN伺服器的版本和部署
1.SVN分為伺服器端和客戶端
伺服器端:VisualSVN-Server-2.5.9.msi
客戶端:TortoiseSVN-1.7.12.24070-x64-svn-1.7.9.msi
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資源庫的概念。
相關文章
- eclipse svn怎麼讓其同步整個專案?Eclipse
- 專案:IT資源共享資源(登入前端)<1>前端
- 共享資源庫系統
- IDEA svn專案 更換SVN地址Idea
- eclipse 安裝svn外掛Eclipse
- Eclipse-安裝SVN外掛Eclipse
- IDEA匯入Eclipse專案IdeaEclipse
- 專案中使用SVN簡介
- Eclipse-用Eclipse搭建一個maven專案-續EclipseMaven
- 專案資源管理
- 成功使用Eclipse匯入專案,並實驗Mybatis操作了資料庫內容。EclipseMyBatis資料庫
- eclipse專案匯入到IDEAEclipseIdea
- SpringBoot專案遠端Debug模式(Eclipse)Spring Boot模式Eclipse
- Eclipse中專案Maven相關配置EclipseMaven
- Maven教程(Eclipse配置及maven專案)MavenEclipse
- SVN cornerstone專案branch, tags, trunk記錄
- 共享wifi專案怎麼樣,騰訊共享wifi專案如何加盟?WiFi
- 最新Android開源庫、工具、開源專案整理分享Android
- 專案微管理41 - 資源
- 跨域資源共享跨域
- Eclipse 啟動專案錯誤:class not foundEclipse
- SpringBoot專案在Eclipse/MyEclipse中執行Spring BootEclipse
- 如何建立一個Maven專案(eclipse版本)MavenEclipse
- 資源又不足?專案資源該如何有效管理?
- 02 eclipse中配置Web專案(含eclipse基本配置和Tomcat的配置)EclipseWebTomcat
- 從 svn 將myeclispe專案匯入到ideaLispIdea
- 共享wifi是什麼專案,共享wifi專案的賺錢原理有哪些?WiFi
- java怎麼匯入專案?java已有專案如何匯入eclipse?JavaEclipse
- Eclipse通過EGit外掛提交多個專案到同一個倉庫EclipseGit
- 上傳已有專案至 GitHubGithub
- 專案資源管理-日曆圖
- 專案資源管理流程例項
- 跨域資源共享CORS跨域CORS
- 跨域資源共享——CORS跨域CORS
- multiprocessing多程式資源共享
- js跨域資源共享JS跨域
- CSDN資源共享規範
- 跨域資源共享(CORS)跨域CORS
- Eclipse安裝svn外掛的常用的兩種方式Eclipse