How to ... Make Subversion ignore files and folders

Reblogged from Hungry for Knowledge:

Excluding files from your repository Sometimes you may have types of files or folders in your source code tree that you do not want to include in your source code repository. Everyne developing with Visual Studio will immediately know what I mean: VS automatically makes bin and obj subfolders for your project folder in which it puts the buildresults and also creates *.suo files with your personal settings for a solution.

Read more… 485 more words

Here is a good guide on how to exclude files and directories from SVN.

Revert or rollback a SVN revision

If you have ever deployed code from a SVN repository with a bug in it and you need to revert to a working revision then you may find the following handy.

First find the revision numbers for the file(s) in question.

Use the log command to get the info from previous commits including revision numbers.

So something like… Continue reading