Connecting the dots…

Thoughts on Web Development, Scalability and Application Architecture

Tag: svn

svn: This client is too old to work with working copy ‘.’; please get a newer Subversion client

How about this, you wake up in the morning and decided to resume development (I know this sounds sad considering today is 31st of Dec), you type svn update and you get the error: $ svn update svn: This client is too old to work with working copy ‘.’; please get a newer Subversion client [...]

Symfony development process

My development process involves using doctrine and svn. Documenting my development steps to make sure I can put this is some sort of build script in future. Creating svn directories svn mkdir -m "create default directories" http://svn.clients.rajatpandit.com/project-name/trunk http://svn.clients.rajatpandit.com/project-name/tags http://svn.clients.rajatpandit.com/project-name/branches Checkout these directories locally: svn co http://svn.clients.rajatpandit.com/project-name/ . Move to the trunk directory cd trunk Creating [...]

using svn for development in symfony

The recent project that I am working on for a client has taught me more about svn than I ever did because of the complex nature of the product. It has been going through a proper product development cycle which involves quick iteration of features and sometimes, such dramatic changes that can make the entire [...]

GIT – version control system

Having used CVS, SVN and GIT, GIT clearly seems like my preferred choice of version control system, esp for my symfony projects, its amazing how fast it is and how easy it is to use for most of the basic operations and even for other slightly complex operations like branching and merging. I have previous [...]