How To Exclude Files From Displaying in Subversion Status Command?October 25th, 2006 Often you have files in your subversion directiory which you do not want to commit / check-in. Such files could be compiled files, intermediate files used for data processing etc.
5 Minutes Guide To SubversionJanuary 13th, 2007 Subversion is a free open source source code management system (SCM) like CVS, Perforce, ClearCase etc. In this simple 5 minutes guide you will know about some key commands to quickly get started with subversion from ground zero.
Using Subversion to Seamlessly Update & Merge Web Sites and Web ApplicationsJanuary 15th, 2007 I wanted a seamless procedure to update web sites and web applications without compromising security. The development server is under a firewall and so is the production server.
Subversion Hack: Automatic Versioning on Save With SubversionAugust 14th, 2007 I discovered a really cool way to use Subversion, my favorite version control system - automatic versioning / commit on save. Essentially with this simple tweak you can use subversioned files like you would use any ordinary files.
How To Backup PmWiki in Subversion (Code)October 8th, 2007 PmWiki is a popular wiki software which uses the file system to store wiki pages. We use for our intranet and to document our processes and systems.
How To Clean Subversion DirectoriesJune 15th, 2006 When you checkout a repository from subversion it creates a .svn directory (with subdirectories) for every directory (and subdirectory) checked out. The .svn directory contains information about the repository and files in the directory and allows you to run svn commands without having to authenticate yourself in future.
Hosted Subversion Service: Advantages and DisadvantagesApril 30th, 2009 Subversion is a highly popular version control system used worldwide. It succeeds CVS and aims to rectify its shortcomings.
How to Integrate Subversion, Version Control Software, With Apache ANTNovember 4th, 2005 Subversion is a popular version control software and replacement for CVS, the grand-daddy of all version control software which is still widely used in open source community. Recently I had the necessity to invoke Subversion commands like checkout from Ant, a popular java based build software which replaces make tool.
How To Configure PHP 5 With Apache 2 On Windows in 2 MinutesSeptember 25th, 2006 I am assuming that you have downloaded and installed Apache 2.x on your windows machine. Use the latest version 2.2, if you do not have plans to run Subversion on it.
How To Add Revision Number, ID Automatically To Subversion Files in Two Simple StepsOctober 25th, 2006 Revision number of a file is an important information. Two most common uses are in serialization and in making version specific database upgrades for an application.
How to Compress CSS Files Using PHP without RenamingJanuary 5th, 2009 IF you are using a stylish and feature rich environment for your website, then your CSS files must have reached its limit of annoyance for you. So how can you compress CSS files using PHP? You can.
Software Review: Hosted Subversion Analytics ServiceJune 20th, 2007 I was contacted by ProjectLocker to review their new service: Subversion Analytics. I took the service through the paces using their demo account.
The Power of Ant (Build System)August 27th, 2008 I am using Ant (Java based build system) for our project. Ant is an exceptionally powerful build system and should be the only build system you will ever need.
3 Ways To Selectively Execute HTML Files Using Apache HTTP ServerJanuary 14th, 2007 A very simple way to execute HTML files is by telling the server to parse html files for SSI commands. To do it simply add the following lines to your .htaccess file:
AddType text/html .html
AddHandler server-parsed .html
This has the downside of processing all the html files in that directory and its subdirectories.
Meta Review of Mercurial Distributed Version Control SystemMay 2nd, 2007 I was recently introduced to Mercurial, a new distributed version control system people are talking about. Version control systems are central to any development team and a choice shouldn't be made lightly as you will often find your development process limited by the limitations of the system.