Friday, August 22, 2008

Small thing matters!

Small thing matters, for the last few days I've been thinking about it. Read here.

Tuesday, August 5, 2008

Adding new project in subversion

To add a new project in subversion is very simple
  1. Go to the repository directory
  2. Execute : svnadmin create project_name
  3. Check the permission of the new directory (and all files/directories inside), change it if needed (so that svn user can access it)
  4. Checkout the project
  5. In the directory where the project is checked out, add directories as follow : branches, tags and trunk
  6. Add and commit it to svn
Your subversion project is ready to be used.