SVN Vendor Branch Management

Here’s the best reference I could find on vendor branching.
http://svnbook.red-bean.com/en/1.1/ch07s05.html
The main idea is if you are updating or modifying another group’s source project and you want your updates to be applied to updates from the group’s next release.  This is called vendor branching.  Basically, create a vendor repository and import the vendor’s code to that [...]

Subclipse, eclipse, svn, “Error while reading log messages from file”

I got this error when in Flex Builder / Eclipse and using SVN.
I had done a commit, then SVN thought it needed to commit the base directory which had no revisions.  I committed it, then came back and added log comment later on.  When I went to view the revision tree, SVN gave the message [...]

Delete a Subversion (SVN) Revision

If you just had a commit error on the repository or just committed something by accident, an easy way to remove the revision from the repository is to reload the repository up until the previous revision.  Say the latest commit 603 just had an error or mistake.
First backup the repository up until the previous revision:
svnadmin [...]

Change SVN Revision Properties on Windows Machine

Suppose you’ve made a wrong comment on an SVN commit and now you wish to change it.  You are using Windows or your SVN server is on a Windows based machine.
To fix an SVN error message, use the following command:
svn propset svn:log –revprop  -r <revision#>  ”<Corrected Message>” <URL>
example:
C:\src>svn propset svn:log –revprop -r 393 “Reverted to revision 350″ [...]