We Recommend

Version Control with Subversion Version Control with Subversion
Written by members of the Subversion open source development team, Version Control with Subversion introduces the powerful new versioning tool designed to be the successor to the Concurrent Version System or CVS. CVS users will find the "look and feel" Subversion comfortably familiar, but under the surface it's far more flexible, robust, and usable, and more importantly, it improves on CVS's more notable flaws.


Posted By

spider on 02/03/07


Tagged

svn rails ruby application repository


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

SamuelMiller


Create a new svn Repository for new RoR application


Published in: SVN 


  1. mkdir ~/src/appName
  2. svnadmin create ~/src/appName
  3. cd ~/
  4. mkdir ~/tmp
  5. mkdir ~/tmp/branches
  6. mkdir ~/tmp/tags
  7. mkdir ~/tmp/trunk
  8. svn import ~/tmp file:///Users/spider/src/appName -m "initial import"
  9. rm -r ~/tmp
  10. cd ~/Documents/RubyOnRails
  11. svn checkout file:///Users/spider/src/appName/trunk appName

Report this snippet 

You need to login to post a comment.