tortoisesvn

Weird Apache2.2 SVN error, “Expected repository format '3' or '5'; found format '9'”

本小妞迷上赌 提交于 2019-12-01 23:22:06
问题 I've had a repo that I would access, using TortoiseSVN, from only the same computer on which the Subversion win32 service was running, and it's been working for a while now. I decided to try to set up mod_dav_svn to be able to get at it from elsewhere. When I try to access it, I get this error in the browser: <D:error> <C:error/> <m:human-readable errcode="165005"> Could not open the requested SVN filesystem </m:human-readable> </D:error> ...and these errors in the log: (20014)Internal error:

TortoiseSVN 1.71 and VisualSVN 2.51 will not connect after update

折月煮酒 提交于 2019-12-01 22:40:01
问题 I updated VisualSVN to v2.51 and TortoiseSVN to 1.7.1 at the same time a few days ago. Before the update, using subversion worked fine for many months. Ever since the update, I have not been able to connect to the repository. The OS is Win7 Home Premium 64bit, Visual Studio Web Developer Express 2010 is installed, all Windows Updates have been applied automatically, and I used the apache server connection with SSL, which is the same as was working before. Also browsing the repository from

TortoiseSVN 1.71 and VisualSVN 2.51 will not connect after update

倾然丶 夕夏残阳落幕 提交于 2019-12-01 22:26:53
I updated VisualSVN to v2.51 and TortoiseSVN to 1.7.1 at the same time a few days ago. Before the update, using subversion worked fine for many months. Ever since the update, I have not been able to connect to the repository. The OS is Win7 Home Premium 64bit, Visual Studio Web Developer Express 2010 is installed, all Windows Updates have been applied automatically, and I used the apache server connection with SSL, which is the same as was working before. Also browsing the repository from VisualSVN works fine. To demonstrate the problem in a simple way, I used a Command Prompt session to try

Tortoise SVN tree conflict with myself

蓝咒 提交于 2019-12-01 21:32:55
Has anyone had the experience of moving a file in tortoise and committing successfully, only to later commit a different change and be told of a tree conflict where: the file in its original location has been deleted, but in tortoise is marked as missing the file in its new location is there, but marked as already added. (I use tortoise SVN, and we have client and server > 1.60) Nobody else changed either the directory or the file (according to svn log). Why is this happening? Is there a way to avoid it happening? If it does happen, is there a more elegant way of fixing the problem than by

Get the previous SVN Update log

做~自己de王妃 提交于 2019-12-01 21:22:48
I have done an svn update from trunc . While updating, the Action and corresponding Path had been displayed in tortoisesvn dialog box. Once the update is done, I have closed the window. My question is how can I review or get the previous Update log.I have already done an svn commit after my previous update . TortoiseSVN->Settings->Saved Data There's a section at the bottom named Action log . Click on the Show button to show the log. %userprofile%\AppData\Local\TortoiseSVN\logfile.txt 来源: https://stackoverflow.com/questions/21274272/get-the-previous-svn-update-log

Why doesn't Subversion allow to commit .htaccess files?

坚强是说给别人听的谎言 提交于 2019-12-01 21:06:19
I can't commit .htaccess files from my Windows SVN client (TortoiseSVN). The error that is returned is: Could not read status line: Existing connection was forcibly closed by the remote host. And here is basically what my vhost looks like in Apache: <VirtualHost *:80> DocumentRoot /var/www/mydomain.com/legacy/trunk/html ServerName mydomain.com <Directory /var/www/> FileETag MTime Size AllowOverride All </Directory> <Directory /var/www/tools> AllowOverride All </Directory> <Location /svn> DAV svn SVNPath /var/svn/repos/MyRepo # Limit write permission to list of valid users. # Require SSL

Occasional svn: E170013: Unable to connect to a repository at URL 'https://svn…' svn: E730054: Error running context

邮差的信 提交于 2019-12-01 20:09:38
I need help with svn errors E170013 and E730054: When executing the command "svn checkout..." in command line, I get the error svn: E170013: Unable to connect to a repository at URL 'https://svn.....' svn: E730054: Error running context: An existing connection was forcibly closed by the remote host. However, if I run the same command right after (only in the next 3 minutes), the command is executed successfully without errors, and the source code is checked out successfully. Otherwise after 3 minutes (approximately), if I want to checkout again I need to run the svn checkout command, get the

Changing working folder location

情到浓时终转凉″ 提交于 2019-12-01 20:04:30
I want to change the location of working folder. How to make the changes in my SVN repository? I am using TortoiseSVN client. If you want to move your entire working copy, just move it in the file system. If you want to move a folder within the working copy and later commit the move, right click on the folder, pick TortoiseSVN->Rename. Change YourFolder to something like ..\..\NewFolder\AnotherFolder\YourFolder . Note that ..\..\NewFolder\AnotherFolder\ must exist before the operation. Another way to move files and folders from TortoiseSVN is to use the Repository browser. There you can easily

eclipse插件svn和客户端工具TortoiseSvn的版本对应关系

大兔子大兔子 提交于 2019-12-01 18:52:25
安装eclipse之svn插件时,如果所装插件版本与客户端工具TortoiseSvn的版本不一致,经常会导致svn无法正常使用。所以如果同时使用这两个软件,一定要保证版本的对应关系: (1)插件svn1.4.x对应TortoiseSvn 1.5.x (2)插件svn1.6.x对应TortoiseSvn 1.6.x (3)插件svn1.8.x对应TortoiseSvn 1.7.x (4)插件svn1.10.x对应TortoiseSvn 1.8.x (5)插件svn1.12.x对应TortoiseSvn 1.9.x 来源: oschina 链接: https://my.oschina.net/u/2283390/blog/853500

Hook script execution on client side

牧云@^-^@ 提交于 2019-12-01 16:46:43
I am working on a SVN project, and I need to execute my pre-commit hook script from the client side. Is there any way to execute them? The only possible solution is to use TortoiseSVN which has the opportunity to execute special Hook Script (only from TortoiseSVN) on the client side. Otherwise it's not possible to run Hook Scripts, cause they run allways on the server side. Create a script file that is an alias for the svn command if you are using the command-line as this post suggests: http://top-frog.com/2009/04/23/client-side-pre-and-post-svn-hooks-with-unix-aliases/ You just need to put