Thursday, May 13, 2010

SVN stuff

This is how you create a repository (usually done by IT):
svnadmin create (repo_name)

This is how you add content to a repository:
svn import (files | folder) (repo_name) -m "initial import"

This is how you checkout the latest version of something existing in SVN into the current working directory:
svn checkout (repo_name/path)

This is how you check something into it to update the svn with a more current version:
from within the root folder when doing svn checkout (ie: /workspace/genomeQC):
svn commit -m "update to ver 1.5"


No comments:

Post a Comment