This cheatsheet is a quick reference for using SVN, Create a Repository on Linux: svnadmin create To store projects in Subversion/SVN, first you must create a repository.
svnadmin create /svnrepos Add a Project to Repository - svn Import svn import -m "import project" /home/xxxx/public_html file:///svnrepos/<project name>Starting SVN Server daemon- svnserve
svnserve -d This would start the SVN daemon on port 3690. To listen to port other than 3690svnserve -d --listen-port=8080 Checking Out a Project - svn co
svn co svn://<server>/svnrepos/<project name> Checking for Changes - svn status To see what files you have changed or added to your checked out work, use svn status:
svn status Adding new files - svn add svn add <file or dir name> Read more: Ebizon Netinfo
svnadmin create /svnrepos Add a Project to Repository - svn Import svn import -m "import project" /home/xxxx/public_html file:///svnrepos/<project name>Starting SVN Server daemon- svnserve
svnserve -d This would start the SVN daemon on port 3690. To listen to port other than 3690svnserve -d --listen-port=8080 Checking Out a Project - svn co
svn co svn://<server>/svnrepos/<project name> Checking for Changes - svn status To see what files you have changed or added to your checked out work, use svn status:
svn status Adding new files - svn add svn add <file or dir name> Read more: Ebizon Netinfo
0 comments:
Post a Comment