问题描述
我有一个在 Visual Studio 2008 中使用 Subversion 和 AnkhSVN 进行源代码控制的解决方案,但我想从中删除源代码控制,我该怎么做?
I have a solution that is source controlled with Subversion and AnkhSVN in Visual Studio 2008, but I would like to remove source control from it, how do I do that?
推荐答案
SVN 与可怕的 VSS 不同,它的绑定"不会使您的项目文件混乱:它将所有系统信息保存在 .svn 中
或 _svn
每个版本控制目录中的子文件夹.因此,从项目中删除"版本控制实际上意味着删除所有这些文件夹.
SVN, as opposed to the dreaded VSS, does not clutter your project files with its "bindings": it keeps all its system information in .svn
or _svn
subfolders inside every version-controlled directory. Thus, "removing" version control from a project effectively means deleting all these folders.
然而,这很乏味,所以 SVN 有一个特殊的命令叫做 svn export 要么从 URL 指定的存储库中导出一个干净的目录树",要么从工作副本中导出一个干净的目录树".
This is tedious, however, so SVN has a special command called svn export which either "exports a clean directory tree from the repository specified by URL" or "exports a clean directory tree from the working copy ".
这篇关于如何在visual studio中摆脱subversion源代码控制?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!