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"
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