Rename a branch in SVN
If you made a typo or a similar mistake when naming your new branch, and you want to rename it,…
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
If you made a typo or a similar mistake when naming your new branch, and you want to rename it,…
So, I use svnX on MacOSX and I find DiffMerge a much nicer application than the default FileMerge, but I…
If you need to backup your SVN repositories, then you can use this bash script to do so: #!/bin/bash DATE=`date…
Subversion, by default will stop you from editing a log message after its been committed. This is because SVN has…
Often I want to see which files are going to be updated on a branch before I run the update…
Its fairly very simple to get a changelog from Subversion when you know the revision numbers you are searching for:…
I am assisting a colleague today check out a rather large feature branch. I showed him the branch address and…
When creating a Zend Framework site, its always best to keep the Zend library as an external source. This way…
How to recursively add all new files to SVN > svn add --force * Saves a whole bunch of time…
To create a new branch in SVN, its very simple. svn copy <source> <destination> -m <message> This will copy the…