After setting up an instance of SVN using the instructions I found here. I wanted to setup email notification for every commit on a SVN server. I was able to setup SVN::Notify using the tutorial on this page. When attempting to run perl -MCPAN -e ‘install SVN::Notify’, the install command complained that MakeMaker version is [...]
Posts Tagged ‘svn’
Using Subversion externals for files
Posted: March 31, 2011 in howtoTags: externals, howto, svn, Technology
I needed to use Subversion externals property to define a reference to a file. Based on this blog, here are my notes: Let’s say that you want to have Subversion to use the following file from another directory: https://mysvnserver.com/svn/shared/lib/thelib.jar And have the file download into the following file in your project: myproject/lib/thelib.jar You should have [...]
I wanted to merge one revision I made in the trunk into one of the branches. So, I used Subversion’s svn merge command to accomplish this. Thanks to Ray M. for explained the Subversion merge command to me. Here are my notes: Before I start, I identified the following information: The target revision number in [...]
A co-worker shared the following tip with me: How do I check out a specific revision of a file? Here is the command: svn update -r 1234 myfile.txt -r option specify the revision number.
