天天看點

Eclipse中SVN的安裝步驟(兩種)和使用方法

轉載自:

http://blog.csdn.net/vebasan/article/details/6186344

一、給eclipse安裝svn,最常見的有兩種方式:手動方式和使用安裝向導方式。具體步驟如下:

方式一:手動安裝

1、從官網下載下傳site-1.6.9.zip檔案,網址是:subclipse.tigris.org

2、從中解壓出features與plugins檔案夾,複制到e:/myeclipse/myplugin/svn裡面,其它的*.xml檔案不要。

3、在e:/myeclipse/myeclipse x.x/dropins下建立檔案svn.link,内容是:path=e://myeclipse//myplugin//svn 儲存。

4、删除e:/myeclipse/myeclipse x.x/configuration/org.eclipse.update檔案夾

5、重新開機myeclipse就一切正常了。

方式二:使用eclipse安裝向導

打開eclipse

help->software updates->find and install(如果沒有這個就用help->software updates->add/remove software即可)

選擇search for new features to install, next

點選new remote site

或者:

選中subclipse,點選finish

一直next,這裡注意下,有些時候會出現 subclipse integration for mylyn 3.x (optional) (3.0.0) requires plug-in "org.eclipse.mylyn.tasks.core (3.0.0)", or compatible.錯誤,這個不要緊,在彈出框中選擇subclipse,把subclipse integration for mylyn 3.x選項去掉即可

next一路安裝完成!

二、eclipse中使用svn(以myeclipse8.0為例)

1、共享項目(把本地的項目共享到subversion伺服器上)

打開myeclipse8.0,假設要共享projtest是項目名稱

右鍵項目projtest->team->share project->svn,

單庫模式下url填寫svn://svn server address/,多庫模式下url填寫svn://svn server address/repository1,其中repository1是庫的名稱

next直到finish,proj1就被共享到svn伺服器上了,但是代碼并沒上傳,還需要commit一次

右鍵項目projtest,team->commit,項目内容就被上傳到svn伺服器了

2、簽出項目(把svn伺服器上的項目下載下傳的到本地)

打開myeclipse8.0

window->open perspective->svn repository explorer(如果沒有在other裡選擇)

在左邊空白處右鍵->new->repository location

單庫模式下url填寫svn://svnserveraddress/,多庫模式下url填寫svn://svnserveraddress/repository1(同步驟二)

右鍵projtest->check out

next直到finish,該項目就被簽出到本地,切換到java視圖就能看到該項目了

繼續閱讀