-
Search
Categories
-
Linux, PHP, LAMP, The Web in a blog- Android – how to develop directly on a phone
- Android drawable default icons – they are free to use
- Android how to read and write files
- Uncompress on the fly when copying a file from a remove location with scp
- Setting up an encrypted volume on an external hard drive on CentOS
- Linux bash – tar tricks
- Implement Selenium tests
- Using a downloaded package without IDE in Java
- CSS selectors optimisation
- Ubuntu Linux on Acer Aspire AO751h
Tag Cloud
alarm array backup begin button character commercial constants coppermine CSV DVD eclipse ecommerce email email server expect firefox font foreach formatting fstab ftp GMail gnome keyboard Lucene marketing memcached mount plugin profiling protect regexp scp Selenium SEO sftp split svn tar utf utf8 Vbulletin Virtual Server Web Dev Security
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
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
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
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
