visualsvn-server

How to Call CMD.EXE from PowerShell with a Space in the Specified Command's Directory Name

寵の児 提交于 2019-11-29 17:12:49
问题 I have the following PowerShell script for verifying my SVN repositories: $SVNAdminDir = 'C:\Program Files (x86)\VisualSVN Server\bin'; $RepositoryDir = 'C:\My Repositories\App1'; $_cmd = "`"$SVNAdminDir`\svnadmin`" verify `"$RepositoryDir`""; Write-Host $_cmd; # Copying this into the command prompt runs without an issue... cmd.exe /c $_cmd; # It's when I try to execute the command from PS that I get the error. But when I try to execute it, I'm receiving the following error message: cmd.exe :

Is there a way to migrate SourceSafe with HISTORY into SVN?

和自甴很熟 提交于 2019-11-29 10:58:23
Is there a way to migrate SourceSafe with HISTORY into a SVN ? Ideally I'd like to use VisualSVN Server, but I don't really want to lose my SourceSafe history. If I have to I will though. M4N A long time ago (it seems) I tried to migrate a SourceSafe DB to subversion using vss2svn , but finally gave up. There were several problems, IIRC: you have to make sure that the SS DB is consistent (e.g. Analyze does not find any problems or is able to fix them). it took a very long time to migrate the DB, because it was quite big. finally the migration failed due to some problems with parsing dates. I

Eclipse VisualSVN error svn E175002: java.lang.NumberFormatException

半城伤御伤魂 提交于 2019-11-29 10:42:25
So this error seems to occur when I attempt to add a new repository location in Eclipse. However, I am sure that the URL and authentication info (username and password) are valid. The error looks like this, and it occurs when I use https://localhost/svn/TestSVN as the URL. I understand I replaced the name of my PC with localhost but the same error occurs when I use the name of my PC instead. When I installed TortoiseSVN and VisualSVN-Server, I didn't do any custom installations so for the most part, the installations relied on default settings. I also used all the default settings when

Post-Commit Hook to trigger automatic Jenkins Build

為{幸葍}努か 提交于 2019-11-29 00:52:18
问题 I know that there are many similar postings, but I have not found a solution, and the advice and solutions presented in the other posts don't quite jive with what I'm seeing. The scenario is pretty darn simple: I have a project in Eclipse, and when I check-in changes from that project to our Subversion server (i.e., VisualSVN Server 2.5.3), I want our Jenkins continuous integration server (i.e., Jenkins 1.546) to pick up this change and kick off a new build. I do not want to poll from Jenkins

How do I create a SVN Commit Message Template and Hook to Verify

本小妞迷上赌 提交于 2019-11-28 21:12:14
I'm using Visual SVN Server and Tortoise SVN (client) for source control. I would like all developers to standardize on a consistent format for checkin notes. For Example I want their Commit Message to default to... Synopsis: Developer Name: (pre-populated) Reviewed By: [Bug Id]: [Change Bug State]: Known Issues: Affected Files: (pre-populated) In the future I'd like [Bug Id] and [Bug State] to supply the information to trigger an automated update to the Bug Tracking system. Also Developer Name and Affected Files should be prepopulated with the svn user and files that the user is commiting.

Change SVN commit message retroactively?

杀马特。学长 韩版系。学妹 提交于 2019-11-28 14:52:01
问题 I would like to re-write a big number of SVN commit messages to a different structure, e.g. prefix a category. From: "foo" now accepts "bar" format for connection string. I want core - database - "foo" now accepts "bar" format for connection string. Is there an easy way to do this that does not include dumping the whole repository using svndumpfilter ? I am working with TortoiseSVN on the client end, and VisualSVN on the server end. (VisualSVN is a wrapper around classic svn , which I can

Configuring VisualSVN Server to use _svn instead of .svn

只谈情不闲聊 提交于 2019-11-28 14:00:46
We were having a problem with our build server not checking out modifications from source control despite recognizing that there had been changes. It was traced to the control folder (not sure what it's real name is), the existing working builds were using _svn. Clearing the working folder forced a new complete checkout and I noticed that now the control folder is .svn. It looks like originally our integration routines were checking out code using _svn but now it is using .svn. The svn.exe being used during integration is from VisualSVN Server can I set this up to use _svn again? How the

SVN Commit failed, access forbidden

天大地大妈咪最大 提交于 2019-11-28 09:40:18
Recently I am facing problem of commit to SVN. The SVN server I am using is VisualSVN Server 2.5.9 and the client is TortoiseSVN 1.7.12. At first, one user is having problem to commit files to SVN. But that user still can access to the repository and download the update. The second user on second PC is working properly. But today, the second user is having the same problem as the first user. Why is this happen? How can the problem be solved? Thanks. You can get the "Forbidden" error if your user account lacks access permissions to a repository or repository path; it makes sense to check

Will TortoiseSVN 1.7 work properly against a SVN 1.6 repository?

戏子无情 提交于 2019-11-28 09:35:43
I would like to upgrade my TortoiseSVN installation to version 1.7. We have a VisualSVN server running with a SVN 1.6 repository. Do I need to upgrade the repository to 1.7 before I can update my client, or is TortoiseSVN backwards compatible? I know that during the upgrade from TortoiseSVN 1.6 to 1.7, I need to convert my working copy to the new format, but during a commit does it have some logic to see the server version and adapt appropriately? In the release notes Older clients and servers interoperate transparently with 1.7 servers and clients ... Subversion 1.7 servers use the same

Is there a way to migrate SourceSafe with HISTORY into SVN?

老子叫甜甜 提交于 2019-11-28 04:28:15
问题 Is there a way to migrate SourceSafe with HISTORY into a SVN ? Ideally I'd like to use VisualSVN Server, but I don't really want to lose my SourceSafe history. If I have to I will though. 回答1: A long time ago (it seems) I tried to migrate a SourceSafe DB to subversion using vss2svn, but finally gave up. There were several problems, IIRC: you have to make sure that the SS DB is consistent (e.g. Analyze does not find any problems or is able to fix them). it took a very long time to migrate the