首先帖上myeclipse8.6(好像8.*的都可以)上subclipse安裝方法:
help-->myeclipse configure center-->software,右擊quick-add popular plug-ins下的subclipse1.6.*(w/related),選擇add to profile,除了subclipse integration for mylyn其他都選中,然後按部就班的安裝就行了,最後會提示重啟myeclipse,重啟即可。
使用linux做開發都會遇到svn更新提交的情況,有些人說可以用eclipse下的外掛程式subclipse,但那只是能操作**部分(不知道是不是這樣,我沒找到能操作其他svn目錄的功能),並不能操作其他的目錄,所以可以在linux上裝svn服務,使用命令做簡單的操作。
tar xfvz subversion -1.6.15.tar.gz
tar xfvz subversion-deps -deps-1.6.15.tar.gz
cd subversion-1.6.15
./configure --prefix=/opt/svn
make clean
make
make install
vi /etc/profile, 在/etc/profile 最後加入:
path=$path:/opt/svn/bin
export path
svnserve –version 測試
好了,如果要更新某個目錄裡的版本,可以cd進入該目錄,然後svn up更新該目錄的版本。
更多命令見:
linux中使用svn客戶端
1將檔案checkout 到本地目錄 svn checkout svn var www html 1 2 往版本庫中新增新的檔案 svn add file 3將改動的檔案提交到版本庫 svn commit m logmessage path 例如 svn commit m add test file...
SVN客戶端安裝
2 從中解壓出features與plugins資料夾,複製到e myeclipse myplugin svn裡面,其它的 xml檔案不要。3 在e myeclipse myeclipse8.5 dropins下新建檔案svn.link,內容是path e myeclipse myplugin svn...
svn客戶端工具
之前用git的時候是命令列和工具一起用。命令列比較簡單方便一些,工具呢就是更加具體一些,結合使用更好。用了git後再用svn會感覺很不爽,只用命令列還感覺可以,最好也安裝個客戶端工具,看起來更加直觀些。smartsvn收費,當然有破解版,但是安全不安全就不知道了。tortoisesvn沒有mac版的...