visualsvn-server

How to batch delete files/directories from svn repository

佐手、 提交于 2019-12-10 14:27:57
问题 Using: VisualSVN Server, TortoiseSVN, AnkhSVN I used TortoiseSVN to make an initial repository load for all my .NEt projects AND supporting sources / resources that i want to keep. I am planning to use tortoiseSVN for all general source control actions and AnkhSVN for within Visual Studio solutions. My problem is that my repository now has the developer/machine specific files/directories that i dont need. I know Ankhsvn by using the SCC API from Microsoft does not include them if you add the

Commit failed in Eclipse

心已入冬 提交于 2019-12-10 10:11:32
问题 I am trying to commit one java file in Eclipse Juno Service Release 2 using SVN When I do Team/Commit on the file I get the following. Some of selected resources were not committed. Some of selected resources were not committed. svn: E155011: Commit failed (details follow): svn: E155011: Commit failed (details follow): svn: E155011: File 'C:\Users\...\workspace\...\src\com\MyCode.java' is out of date When I try and do Team/Update - whether on the file or the folder or the project, I get Some

Upgrade Subversion Server from 1.7 to 1.8

旧城冷巷雨未停 提交于 2019-12-10 02:33:38
问题 Related to How to upgrade SVN server from 1.6 to 1.7 and Will TortoiseSVN 1.7 work properly against a SVN 1.6 repository?. Updated VisualSVN-Server to 2.6.0 (SVN 1.8) and local TortoiseSVN clients to 1.8. I've upgraded local working copies to 1.8. My question is simply is there anything to do to the actual repository? How can you determine the repository version? Can/Does it need to be upgraded? I can easily update the working copy, but I can't seem to find anything that mentions the actual

Access visualsvn server from eclipse

冷暖自知 提交于 2019-12-09 22:48:02
问题 When I enter the url for the server into a browser (Chrome, Firefox) I can access the repository if I accept the security exception. When I enter the url into svn repository location in eclipse, along with the user name and password, I get an error occured while accessing the repository entry. The error from eclipse is SVN: 0x00400006: Validate Repository Location operation finished with error: Selected SVN connector library is not available or cannot be loaded. 回答1: The instructions from

Tortoise SVN update and commit doesn't work

元气小坏坏 提交于 2019-12-08 11:21:23
问题 I am having issues with Tortoise SVN lately. I am unable to update and commit anything. Tortoise SVN version: 1.6.16 Build 21511 - 64 bit OS: Windows 8 server We use VisualSVN Server for the repo. Whenever I try to update, I see the following screen where it doesn't update anything actually and it just stays like this for hours. Similarly, when I try to commit anything, I get the error message below It happens only on my computer. Other developers are running the same OS, same TortoiseSVN

How to export revision on commit with a post-commit hook?

混江龙づ霸主 提交于 2019-12-08 06:30:19
问题 It may be handy to export the specific Subversion repository branch after a commit, using a post-commit hook. E.g. to update a website after a commit or to update a development branch for testing. Is there any instruction or sample of such a hook? 回答1: The best choice for writing a hook script for Subversion in Windows environment (e.g. VisualSVN Server) is to use Windows PowerShell scripting language or good ol' Windows batch command-line. Here is the sample code of post-commit.bat and post

cannot connect subclipse to VisualSVN on Windows 7

牧云@^-^@ 提交于 2019-12-08 03:53:24
svn: connection refused by the server svn: OPTIONS request failed on '/svn/myrepo/MyProject/trunk' svn: connection refused by the server Java 32 bit 1.6.20 Windows 7 64 bit Eclipse 3.5.2 32 bit VisualSVN 2.1.3 Installed subclipse in Eclipse 3.5.2. Created repository myrepo and Project Structure MyProject. Tried to open repository location https://desktop-PC/svn/myrepo/MyProject/trunk from subclipse and got error popup Error validating location org.tigris.subversion.javahl.ClientException: svn: connection refused by the server svn: OPTIONS request failed on '/svn/myrepo/MyProject/trunk' "" from

SSL handshake failed: SSL error: Key usage violation in certificate has been detected

[亡魂溺海] 提交于 2019-12-07 17:13:50
问题 I have installed kdesvn in ubuntu. But when I am trying to checkout, getting this error. SSL handshake failed: SSL error: Key usage violation in certificate has been detected. I have came across the solution for this as sudo mv /usr/lib/libneon-gnutls.so.27 /usr/lib/libneon-gnutls.so.27.old sudo ln -s /usr/lib/libneon.so.27 /usr/lib/libneon-gnutls.so.27 or sudo apt-get install libneon27 cd /usr/lib sudo rm libneon-gnutls.so.27 sudo ln -s /usr/lib/libneon.so.27 libneon-gnutls.so.27 But Still I

VisualSVN pre-commit rule

岁酱吖の 提交于 2019-12-07 16:57:39
问题 Using this hook with VisualSVN Server, added to the Repository/hooks folder as pre-commit.bat. My question is how do I add the rule that a comment must always start with a numeric value? I want the first part of the comment to always be the issue number from a bug tracker. Eg. "123 - this commit fixes issue 123" @echo off :: :: Stops commits that have empty log messages. :: @echo off setlocal rem Subversion sends through the path to the repository and transaction id set REPOS=%1 set TXN=%2

Visual SVN Server: Guide on Pre/Post Commit Hooks

大憨熊 提交于 2019-12-07 14:08:54
问题 This may be best as a wiki, given comments on here: Share common / useful SVN pre-commit hooks I'm using Visual SVN 2.1.7 on a Windows 7 machine. We have developers committing from various countries and we can manage the code changes by running local copies of the changes and then uploading manually via ftp to the server for each website that's being worked on. This is an incredibly time consuming process, but less time-consuming than fixing bugs on live sites, so it's a step in the right