visualsvn-server

How to use custom keywords in SVN

耗尽温柔 提交于 2019-12-04 01:20:47
问题 I'm using a VisualSVN server and TortoiseSVN client. I have set the properties svn:keywords = Author Id Revision LastChangedDate Copyright copyright = (c) 2009 Foo Company. Then, when I try to use these properties in the header file (including the custom property Copyright), I do it like: /****************************************************************************** * $Id$ * * $Author$ * * $Revision$ * * $LastChangedDate$ * * $Copyright$ ******************************************************

Import a project in SVN from Xcode 5

故事扮演 提交于 2019-12-03 23:26:43
In xcode 4 organizer there was a button "import", in xcode5 how do I import a project in my svn repository? thanks Tommie C. The question is a bit confusing so please advise if it's not exactly what you need (otherwise, feel free to accept the answer). The confusion is that the Xcode 4 workflow you describe is used to allow developers to manage repositories (svn or git). If you want to take an Xcode project and add it to an existing svn repository I am attaching links to answers for that question. Adding Xcode Projects to SVN : Stack overflow response SVNBook High-level Concepts (Xcode 4

Subversion Post-Commit Hooks

三世轮回 提交于 2019-12-03 21:08:24
I am having some issues getting post-commit hooks to work. Subversion doesn't appear to be triggering my post-commit hook when I commit a changed file to my repository. I am using TortoiseSVN and VisualSVN with Subversion, I was able to go into the VisualSVN user interface and create a hook within there that worked however what I would like to do is use the post-commit executable hook in the hooks folder of my installation to execute my hook. I have changed the name from post-commit.tmpl to post-commit.bat in the /hooks folder of my repository and am just doing a simple update within the batch

How can I make only some folders show up for certain developers with SVN

随声附和 提交于 2019-12-03 13:54:30
问题 I have a repository with a bunch of folders, and I want certain developers to only get two or three of those folders when they do a checkout on the repository. How can I make the folders not show by default, and then add them only as I want to grant access. I'm using VisualSVN for the SVN server, and what I have done is given read access to the top level, then denied access to every subfolder, then changed the deny to read/write on folders I want each dev to access. This is a pain because

How to change from https:// to svn:// protocol in subversion server

≡放荡痞女 提交于 2019-12-02 08:19:58
问题 UPDATE : svn and http protocol benchmarking is in.. How long it took to checkout the trunk of a project (in minutes and seconds).. svn protocol : 5:32 http: protocol : 5:33 svn protocol (with AVG folder exception) : 2:22 http protocol (with AVG folder exception) : 2:23 Speed Result : Absolutely nothing in it! AVG Result : However by telling AVG to ignore my working copy folders checkout time became twice as fast! ORIGINAL QUESTION : We currently use VisualSVN Server that I think!? only

How to change from https:// to svn:// protocol in subversion server

寵の児 提交于 2019-12-02 04:55:37
UPDATE : svn and http protocol benchmarking is in.. How long it took to checkout the trunk of a project (in minutes and seconds).. svn protocol : 5:32 http: protocol : 5:33 svn protocol (with AVG folder exception) : 2:22 http protocol (with AVG folder exception) : 2:23 Speed Result : Absolutely nothing in it! AVG Result : However by telling AVG to ignore my working copy folders checkout time became twice as fast! ORIGINAL QUESTION : We currently use VisualSVN Server that I think!? only supports http(s) protocol? (Can someone confirm?).. I have read here and realise that the svn:// protocol is

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

Attaching VisualSVN Server to an existing repository

牧云@^-^@ 提交于 2019-12-01 22:21:03
All the recent VisualSVN Server posts made me want to check it out. I have SVN running right now through Apache, but I'd like to try out VisualSVN Server, mostly for the Active Directory integration. Their docs don't describe whether you can easily migrate an existing repository. Anyone done this before? Visual SVN Server will use your existing SVN repositories with no problems. I have successfully migrated repositories from SVN + Apache to Visual SVN Server on multiple occasions. Cade There is an option on the VisualSVN Server Manager console to import an existing repository. You just give it

Why is my post-commit hook conditional statement not working when I check to see if a particular branch was committed?

杀马特。学长 韩版系。学妹 提交于 2019-12-01 10:32:20
I'm running Subvbersion through VisualSVN Server on a Windows server and have my repository set up with a trunk and three branches. The branches are dev, test and prod. I have a post commit hook that I want to run which updates a working copy after a commit is run, but I only want it to update that working copy if the commit was made in the dev branch. This is the code I have right now... @setlocal enableextensions enabledelayedexpansion @echo off SET str1=%1 IF NOT x%str1:dev=%==x%str1% ( pushd <path to working copy> svn update --username <svn_username> --password <svn_password> echo update