/ Published in: SVN
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
creating the Subversion repository % svnadmin create --fs-type fsfs path-to-svn-repos % mkdir tmp % cd tmp % mkdir webframework % cd webframework % mkdir trunk branches tags % cd .. % svn import . file:///path-to-svn-repos --message 'Initial repository layout' check client % REPOS=svn+ssh://host/path-to-svn-repos % svn list $REPOS importing into the repository % cd ~/Developer/Workspace/Eclipse/projectA/ % svn checkout $REPOS/projectA/trunk . % svn add --force . % svn revert --recursive build/* % svn revert --recursive docs/* % svn propset svn:ignore '*' build % svn propset svn:ignore '*' docs commit % svn commit -m 'Initial project.' Subclipse http://subclipse.tigris.org/update_1.0.x