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.
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.
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.
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.
Subversion: How To Ignore Files From Status DisplayJune 23rd, 2007 In directories under subversion there may be files which you do not want to add to subversion. Normally such files would show in subversion status (svn stat) with ? in front of them.
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 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.
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.
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.
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.
3 Ways to Setup RSync Server on WindowsJanuary 15th, 2007 There are 3 options to run rsync server on windows, explained below with pros and cons and instructions. Using DeltaCopy.
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.
Hosted Subversion Services - Comprehensive List & ReviewsNovember 17th, 2007 This is a comprehensive list of hosted subversion subversion (source code repository) service. I did not include the list of hosted subversion service providers who restrict to only open source projects like sourceforge or tigris.
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.
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.
July 8th, 2008 at 12:24 am
Does this only work when you have actual access to the SVN or could you use this to check the revision number when you have anonymous access?
July 9th, 2008 at 9:37 am
You can use this to check revision number even when you have anonymous access to the subversion repository.
September 8th, 2008 at 2:33 am
i think this would be a little bit faster
function getSCID() {$svnid = '$Rev: 43 $';
$svnid = substr($svnid , 6);
$svnid = substr($svnid , 0, -2);
}
March 26th, 2009 at 6:25 am
This will only return the SVN revision number for the php file it operates on. If you update a different file, the revision number for the current file will not increase. See:
http://svnbook.red-bean.com/en/1.4/svn.advanced.props.special.keywords.html