visualsvn

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

How to backup and restore all the source code in svn?

和自甴很熟 提交于 2019-11-29 07:45:33
Right now I am using Windows XP. If i just copy the whole repository folder in visual SVN, once the server is down, how can i restore it via the backuped repository folder? another better solution to backup and restore in visual svn ? by the way, any method for backup and restore in visual source control? You can just copy the entire directory in and out. Files is files, there's nothing magic about them. If you want to do something more complicated, like edit the repository contents in some way before restoring, then you need dump and load. svnadmin dump /path/to/repository | bzip2 -9c > svn

Best practice for creating subversion repositories?

自古美人都是妖i 提交于 2019-11-28 18:41:20
Our team (5-10 developers) plans to adopt Subversion for our .NET (Visual Studio) projects/solutions (VisualSVN Server, TortoiseSVN / VisualSVN). What is the best way to organize a new repository tree ? Is it okay to use one big repository or is it better to create different repositories for every solution / product line etc.? Our projects can be categorized this way (example): Main Product Line Main Web App Library 1 Library 2 ... Windows Client Another Windows Client Windows Service Tools Tool A Tool B Product Line 2 Software 1 Software 2 Product Line 3 App 1 App 2 Generally, you want to use

Which plugin do you use for SVN in Visual Studio? [closed]

泪湿孤枕 提交于 2019-11-28 18:08:27
I'm considering using SVN for my .Net projects, and I'd like to know what plugins are available for integrating the source control capabilities directly into the Visual Studio IDE. I already know about the following Visual Studio extensions: VisualSVN , which seems great but is not free. It is implemented as a low-level VS package extension. Is anyone using it? AnkhSVN , which is free but I've heard it's a bit buggy. It is implemented as a VS add-in extension. Is anyone using it? are you experiencing problems? Edit: The 2.0 version is a complete rewrite and seems to solve the problem I've

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

Force user to lock file in SVN before editing

拜拜、爱过 提交于 2019-11-28 06:50:04
We have some files in our project that can't be merged and hence the files must be locked by the users before editing them. Is there a way to force the user to lock a file before editing? We are using Subversion and TortoiseSVN / VisualSVN. cadrian Two steps: put the svn:needs-lock property on those files. That way they are check out read-only when such a file must be modified, use the svn lock command and commit as usual links: http://svnbook.red-bean.com/nightly/en/svn.advanced.locking.html http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-locking.html Godsmith More specifically,

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

How to backup and restore all the source code in svn?

。_饼干妹妹 提交于 2019-11-28 01:44:51
问题 Right now I am using Windows XP. If i just copy the whole repository folder in visual SVN, once the server is down, how can i restore it via the backuped repository folder? another better solution to backup and restore in visual svn ? by the way, any method for backup and restore in visual source control? 回答1: You can just copy the entire directory in and out. Files is files, there's nothing magic about them. If you want to do something more complicated, like edit the repository contents in

Subversion (using VisualSVN/Tortoise) refuses to pull down new files

佐手、 提交于 2019-11-27 14:29:52
A problem has started occurring recently in which some new files added to the subversion repositories don't get pulled down to other clients after doing an Update. If I browse the repository with Tortoise I can see the file. I can then right click on it and select 'Update to revision', which will pull the file down to the client. Unfortunately this is very time consuming as there is no way to pull down all files in a folder - i.e. I have to do this for each file individually. The weird thing is, it doesn't occur with all files and it is not occurring on all client machines. I have tried

Best practice for creating subversion repositories?

微笑、不失礼 提交于 2019-11-27 11:36:22
问题 Our team (5-10 developers) plans to adopt Subversion for our .NET (Visual Studio) projects/solutions (VisualSVN Server, TortoiseSVN / VisualSVN). What is the best way to organize a new repository tree ? Is it okay to use one big repository or is it better to create different repositories for every solution / product line etc.? Our projects can be categorized this way (example): Main Product Line Main Web App Library 1 Library 2 ... Windows Client Another Windows Client Windows Service Tools