Tag Archives: svn

Very Easy SVN Server for Local Development

This is a very easy installation that lacks in security. That means do it on your personal laptop, no other users but you. Install the subversion package (i.e. apt-get install subversion) sudo mkdir -p /home/svn/ sudo svnadmin create /home/svn/project_name sudo … Continue reading

Posted in Web Development | Tagged | Leave a comment

CentOS – Useful Programs (also for SVN)

Admin List of installed packages and available packages (to check whether an update is available): php list ‘php*’ Upgrade a package yum upgrade php Install a package yum install php RapidSVN Install RapidSVN (find an rpm) yum install meld [this … Continue reading

Posted in Redhat / CentOS | Tagged | Leave a comment

Delete SVN Files From a Working Directory

find /project_dir -type d -name .svn -exec rm -rf ‘{}’ + OR, better, if possible: svn export project_dir new_dir

Posted in Web Development | Tagged | Leave a comment

SVN

After installation, creation of an empty new repository [both as root]: svnadmin create /var/svn/repos/newrep mkdir /var/svn/repos/newrep Initial importation of files into the repository [as root]: svn import dir_with_initial_files file:///var/svn/repos/newrep/trunk Check everything is OK [as the user owner of the working … Continue reading

Posted in Linux, Web Development | Tagged | Leave a comment