visualsvn

How do I put an existing Visual Studio solution under source control using VisualSVN Server?

ε祈祈猫儿з 提交于 2019-12-22 10:00:00
问题 I have an existing Visual Studio 2013 solution, and I want to put it under source control using VisualSVN Server. I installed VisualSVN Server and created a new blank repository. Their Getting Started page doesn't explain how to add a folder structure and files to the repository. I am expecting an import or add files option when right clicking on the repository node in the UI. How do I add an exiting root folder and all its files and folders of a Visual Studio solution to a repository and

How do we keep track of our working copy's branch?

一世执手 提交于 2019-12-22 04:24:10
问题 Are there any good techniques to help us know which branch (or trunk) our working copy is from? We recently converted to Subversion and we're using release branches. I had two developers commit changes to the release branch that should have been committed to the trunk. We're using CI (TeamCity), so I recognized the problem right away and was able to revert the changes but I'd like to prevent it from happening again. From within Visual Studio, especially, it's easy to make a mistake and commit

Access to '/SVN/[repo name]/!svn/me' forbidden [duplicate]

我是研究僧i 提交于 2019-12-21 07:23:38
问题 This question already has answers here : SVN Commit failed, access forbidden (7 answers) Closed 2 years ago . I am having some issue with some SVN users where they get the following message Access to '/SVN/[repo name]/!svn/me' forbidden I am having some issues figuring out the root cause of it. The current setup is using Visual SVN on windows. We are using SVN security for the users, not AD. The users are that are having some issue are vendors(but not all of them), so they do have different

Hosting Mercurial HG via VisualSVN Server

旧街凉风 提交于 2019-12-20 10:54:30
问题 I have tried to host a Mercurial HG repository using a Scriptalias. ScriptAlias /hg/ "htdocs/hgwebdir.cgi" If I go to Chrome it display the contents of the cgi file. In IE it does render however images and links are not displayed. In either case the repository I want to display is not shown. Has anyone managed to get this working with VisualSVN? Also will this work if I have windows authentication and https? 回答1: Here's a alternative setup using mod_wsgi (fast!), combined repository directory

SVN to GitHub migration

♀尐吖头ヾ 提交于 2019-12-20 07:40:24
问题 I have to migrate multiple directories from SVN trunk to one single GitHub repository. I'm able to clone single directory at a time by using this command: git svn clone "https://svn repo url" How to clone multiple directories with a single command from svn trunk? What is the best way to do migration? 回答1: In the hard way officil svn to git migration you have to run a bunch of command to make the conversion, basically transforming trunk to master, svn revision's in commit's (git style) and svn

(Visual)SVN ignore files by Regex

十年热恋 提交于 2019-12-20 01:11:31
问题 I need to exclude files with the following pattern: ProjectFoo.Data[0-9]{14}.lgp How can I use RegEx for (Visual)SVN ignore list? 回答1: The subversion ignore list don't support regular expressions. They are implemented as glob/file patterns. These patterns don't support the {14} repeat construct. The pattern ProjectFoo.Data[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9].lgp should do what you ask, but I would recommend using something like ProjectFoo.Data[0-9]*.lgp as

Recover svn from directory backup after server failure

拟墨画扇 提交于 2019-12-19 08:58:15
问题 The machine hosting our svn server failed. We were able to recover the C:\Repositories\ directory. How do we migrate this to a new host? 回答1: Just install svn as normal on the new server, copy the Repositories directory to the new server, and point svn at the directorys containing your repositorys. 来源: https://stackoverflow.com/questions/610652/recover-svn-from-directory-backup-after-server-failure

Recover svn from directory backup after server failure

浪子不回头ぞ 提交于 2019-12-19 08:58:07
问题 The machine hosting our svn server failed. We were able to recover the C:\Repositories\ directory. How do we migrate this to a new host? 回答1: Just install svn as normal on the new server, copy the Repositories directory to the new server, and point svn at the directorys containing your repositorys. 来源: https://stackoverflow.com/questions/610652/recover-svn-from-directory-backup-after-server-failure

AnkhSVN vs VisualSVN [closed]

穿精又带淫゛_ 提交于 2019-12-18 12:08:56
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . We're thinking of switching to SVN at my work, so I was wondering about SVN plugins for VS2008 (and 2010 when it comes out). After a

Import Dumped SVN Repo into Visual SVN

佐手、 提交于 2019-12-18 04:12:45
问题 I have dumped my repository on my old computer to a file with the command. svnadmin dump C:\myrepo/ > mydumpfile Now I decided to use Visual SVN on my new computer as opposed to just a baseline subversion. How do I import my repository into VisualSVN? 回答1: Figured it out now that Andrew Clark pointed out there is a "All Tasks" Repository -> All Tasks -> Open Command Prompt svnadmin create repository-name svnadmin load repository-name < repository-name.dmp 回答2: try copying your repository to