My Blog

SVN Post Commit hook

on October 2, 2011 By Anil Konsal

Some days ago, I got a requirement of giving access to 3 users to my SVN repo over ssh. #groupadd dev #useradd -g dev auser #useradd -g dev buser #useradd -g dev cuser Then set [...]

Read More


Exporting unversioned files with SVN

on May 28, 2011 By Anil Konsal

You can just use cp -r to copy the directory tree directly, and then remove the .svn directories afterwards: # cp -r x # cd x # find . -name .svn -type d -exec rm [...]

Read More


Eclipse Helios key bindigs for SVN stopped after update

on August 7, 2010 By Anil Konsal

Go to Window > Customize Perspective. under the tab ‘Command Groups Availability’ check the ‘SVN’ checkbox. The keybindings will start working.  

Read More


How to setup a Subversion Repository for PHP Development

on October 14, 2009 By Anil Konsal

Being a PHP developer and a System Administrator, Setting up the development environment and Development both are my Key Responsibilities. For years, I have been away from the Source control, but as you grow, your [...]

Read More