標籤:style blog http color java 使用 os io
一、給Eclipse安裝SVN,最常見的有兩種方式:手動方式和使用安裝嚮導方式。具體步驟如下: 方式一:手動安裝1、從官網下載site-1.6.9.zip檔案,網址是:subclipse.tigris.org2、從中解壓出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安裝嚮導開啟Eclipsehelp->Software Updates->find and install(如果沒有這個就用help->Software Updates->Add/Remove Software即可)選擇search for new features to install, Next點擊new remote site輸入name:subclipse 1.6.x,url:http://subclipse.tigris.org/update_1.6.x,點OK或者:Name: Subclipse 1.6.x (Eclipse 3.2+) URL: http://subclipse.tigris.org/update_1.6.x Name: Subclipse 1.4.x (Eclipse 3.2+) URL: http://subclipse.tigris.org/update_1.4.x Name: Subclipse 1.2.x (Eclipse 3.2+) URL: http://subclipse.tigris.org/update_1.2.x Name: Subclipse 1.0.x (Eclipse 3.0/3.1) URL: http://subclipse.tigris.org/update_1.0.x選中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.0window->open perspective->svn repository explorer(如果沒有在other裡選擇)在左邊空白處右鍵->new->repository location單庫模式下url填寫svn://svnserveraddress/,多庫模式下url填寫svn://svnserveraddress/Repository1(同步驟二)右鍵projTest->check outnext直到finish,該項目就被簽出到本地,切換到java視圖就能看到該項目了