Contents tagged with SVN
-
Backup Up SVN Repositories
SVN hotcopy or dump can be used:
svnadmin hotcopy C:\dev\svn-1.6.6\repository \\SEQUOIA\svn-ultor-backup\repo1\hotcopy\repository-backup
svnadmin dump C:\dev\svn-1.6.6\repository > C:\dev\svn-1.6. … more
-
SVN List All Locked Files
What you're looking for is the svnadmin lslocks command.
I have this set up at work because we keep some Word documents in our Subversion repository (with svn:needs-lock). I have a cron job set up … more
-
SVN Command Line Syntax
Basic Checkout:
svn checkout https://MySVNServer:MyPort/svn/MySVNRepositoryName/MyFolder1/MyFolder2 MySVNRepositoryName --username MyUsername
Basic Commit:
svn commit -m "My Comment For the … more
-
Collab.net SVN Edge: Remove Password Complexity Requirement
modify the appropriate setting in the security.properties file, default location is: C:\csvn\data\conf more
-
SVN Source Code Control - Enabling Editing of Log Messages
To fix error: “Repository has not been enabled to accept revision propchanges; ask the administrator to create a pre-revprop-change hook”
Solution:
To correct this, I needed to create a file in … more