svn

Starting with versioning mysql schemata without overkill. Good solutions?

狂风中的少年 提交于 2019-12-18 11:42:56
问题 I've arrived at the point where I realise that I must start versioning my database schemata and changes. I consequently read the existing posts on SO about that topic but I'm not sure how to proceed. I'm basically a one man company and not long ago I didn't even use version control for my code. I'm on a windows environment, using Aptana (IDE) and SVN (with Tortoise). I work on PHP/mysql projects. What's a efficient and sufficient (no overkill) way to version my database schemata? I do have a

SVN commands does not appear in context menu

大憨熊 提交于 2019-12-18 11:38:24
问题 I've just downloaded and installed SVN Tortoise, but no commands appear on the menu. How is that possible? 回答1: Did you restart your machine? Update: I ran into the same problem myself! It happened when I installed version 1.6 over 1.5. When I restarted my machine, I found Tortoise entries in Start Menu but not via context menu. When I clicked on "Settings" an error message appeared. So, I uninstalled 1.6 and installed it anew. Now it's working again! Yes, available through context menu. I

How do I restrict Apache/SVN access to specific users (LDAP/file-based authentication)?

痴心易碎 提交于 2019-12-18 11:37:33
问题 I have Apache/SVN running on Windows Server 2003 with authentication via LDAP/Active Directory and a flat-file. It's working great except that any LDAP user can access everything. I'd like to be able to limit SVN repositories by user or group. Ideally, I'd get to something like this: <Location /svn/repo1> # Restricted to ldap-user1, file-user1, or members of ldap-group1, # all others denied </Location> <Location /svn/repo2> # Restricted to ldap-user2, file-user2, or members of ldap-group2, #

TFS to SVN

时光怂恿深爱的人放手 提交于 2019-12-18 11:21:52
问题 Can you recommend any tool to migrate sources(with history) from TFS to SVN? 回答1: Have you looked at tfs2svn? tfs2svn is a Windows application that converts a Team Foundation Server (TFS) repository into a Subversion (SVN) repository, preserving the history, branches, and commit information. 回答2: We are migrating TFS 2010 collections into svn. To make it work for us I needed to download and modify the source of TFS2SVN so that it understood the collections we had made. At the moment I just

Subclipse conflict resolution

好久不见. 提交于 2019-12-18 11:01:24
问题 Me and my friend using flex builder (eclipse based) with subclipse for a project. Before committing I always update but sometimes I could not commit because of conflicts. Then I use Team->Synchronize with Repository and it shows at the right side latest from repository and at the left side the my current working copy. It has a button to copy from all non-conflicts from right to left (from latest repository to my working copy). But there are still conflicting lines. Sometimes I just want to

Why do I keep getting 'SVN: Working Copy XXXX locked; try performing 'cleanup'?

佐手、 提交于 2019-12-18 10:59:16
问题 If you have worked with SVN tools in Eclipse (Subversion, subversive) before, then you are likely familiar with the 'working copy 'XXX' locked..." error. I found a very useful post with a workaround for this problem at: Working copy XXX locked and cleanup failed in SVN As great as the workaround is, it is a pain to do it over and over again. Does anyone know why I keep getting this error and what steps I could take to prevent it? Context: I am creating an Eclipse plugin that involves

Where does SVN client store user authentication data?

邮差的信 提交于 2019-12-18 10:58:35
问题 I am trying to simulate a problem we have with a particular domain ID which has issues accessing a subversion repository. Towards this, I tried a svn checkout with the option --username domain\problematic_ID on another windows machine. But I am not able to reproduce the problem as the checkout still succeeds using my own ID. This led me to wonder if SVN caches user authentication data in more than one place and if so where. I have cleared the auth directory in the application data area,

SVN-分支的合并和同步

谁都会走 提交于 2019-12-18 10:54:41
先说说什么是branch。按照Subversion的说法,一个branch是某个development line(通常是主线也即trunk)的一个拷贝,见下图: branch存在的意义在于,在不干扰trunk的情况下,和trunk并行开发,待开发结束后合并回trunk中,在branch和trunk各自开发的过程中,他们都可以不断地提交自己的修改,从而使得每次修改在repository中都有记录。 设想以下场景,如果你的项目需要开发一个新功能,而该功能可能会修改项目中的绝大多数文件,而与此同时,你的另一位同事正在进行bug fix,如果你的新功能不在branch中开发而直接在trunk中开发,那么你极有可能影响另一位同事的bug fix,他/她在bug修复中可能会遇到各种各样的问题,因为你的频繁提交代码引入了过多的不稳定因素。你可能会说,那我在开发的过程中不提交不就行了,等到我全部开发结束我再提交,是,你可以这么做,那还要版本控制干什么呢?也许等到你最后提交代码的时候(也许一周,也许两周?),你会发现有一大堆conflict等着你resolve。。。 那么,正确的做法是什么?使用branch,从trunk创建branch,然后在你的branch上开发,开发完成后再合并到trunk中。 关于branch先讲到这里,下面说说什么叫做合并。很好理解,当branch开发完成后(包括必要的测试

Is it safe to use a subversion feature branch after reintegrate-merged to trunk?

不问归期 提交于 2019-12-18 10:54:07
问题 Must a feature branch be deleted after it's merged (reintegrated) back to trunk? I prefer to constantly merge changes back and forth from my feature branch - I believe this keeps the conflicts to a minimum. Yet I understand that once you use the reintegrate merge to trunk, a feature branch should be deleted. Is it so? Why? What can I do to circumvent this? Update I'm asking about technical problems that come from the tool, not "methodology concerns". I intend to keep working on the feature

Is there a Subversion API that can be used to program against in .NET

♀尐吖头ヾ 提交于 2019-12-18 10:53:03
问题 Is there an API to access Subversion from C#? 回答1: Svn.NET is a continuation (fork) of SubversionSharp mentioned in CMS's answer. SubversionSharp is limited to the .NET 1.1 platform. Svn.NET supports the following platforms: .NET 2.0 on Windows Platforms Mono on Win32 (2.0 framework) Mono on Linux (2.0 framework) 回答2: SharpSvn is a new Subversion wrapper library for .Net/C# that hides all interopand memory management for you and includes a staticly compiled Subversion library for easy