How do I ignore files in Subversion?

(This answer has been updated to match SVN 1.8 and 1.9’s behaviour) You have 2 questions: Marking files as ignored: By “ignored file” I mean the file won’t appear in lists even as “unversioned”: your SVN client will pretend the file doesn’t exist at all in the filesystem. Ignored files are specified by a “file … Read more

Working copy XXX locked and cleanup failed in SVN

One approach would be to: Copy edited items to another location. Delete the folder containing the problem path. Update the containing folder through Subversion. Copy your files back or merge changes as needed. Commit Another option would be to delete the top level folder and check out again. Hopefully it doesn’t come to that though.

SVN admin management GUI tool

Look at visualsvn: VisualSVN Server is a package that contains everything you need to install, configure and manage Subversion server for your team on Windows platform. It includes Subversion, Apache and a management console. User-friendly Management Console Create, import and remove repositories Create and delete folders in repository Dashboard showing overview status of Subversion server Manage … Read more

Check in / Check out in subversion

If you use AnkhSVN in Visual Studio, read its documentation. You may also want to try VisualSVN plug-in if there are issues with AnkhSVN Can someone clarify the steps required to check in / check out to subversion. With SVN you checkout from repository, make local changes, and commit them to the repository with svn commit command.

What ports need to be open for TortoiseSVN to authenticate (clear text) and commit?

What’s the first part of your Subversion repository URL? If your URL looks like: http://subversion/repos/, then you’re probably going over Port 80. If your URL looks like: https://subversion/repos/, then you’re probably going over Port 443. If your URL looks like: svn://subversion/, then you’re probably going over Port 3690. If your URL looks like: svn+ssh://subversion/repos/, then you’re probably going over Port 22. If your … Read more

TortoiseSVN svnadmin

TortoiseSVN now includes those in their install file (or atleast it did when I installed it 5/23/2012) During the options of what to choose to install i had to click on the command line tools. Now it is in (tortoisesvnInstallfolder)\bin\svnadmin.exe just thought i’d share