gpt4 book ai didi

windows - 如何创建可视化 SVN 存储库并获取该 URL

转载 作者:可可西里 更新时间:2023-11-01 09:25:01 29 4
gpt4 key购买 nike

我想创建 VisualSVN Server 存储库并在命令提示符中获取该存储库 URL。我只需要那个 URL,不需要任何其他信息。谁能帮帮我?

我需要等同于 VisualSVN 服务器 New->RepositoryCopy URL to clipboard 的命令。

最佳答案

2016 年更新:

升级到最新的 VisualSVN Server 版本,其中包含一个 PowerShell 模块,该模块为 Subverion 服务器和存储库管理员添加了许多 PowerShell cmdlet。阅读VisualSVN Server | Scripting and Automation页面。

这些 cmdlet 应该对常规管理任务和自动化非常有帮助。以下是 VisualSVN Server PowerShell cmdlet 的完整列表:KB88: VisualSVN Server PowerShell Cmdlet Reference .

正如@IvanZhakov 已经建议的那样,您可以使用 New-SvnRepository 创建一个新的存储库。 cmdlet。

这是一个创建新存储库 MyRepository 并获取其 URL 参数的示例:

$repo = New-SvnRepository -Name MyRepository
$repo.URL

过时的答案:

我假设您指的是 VisualSVN Server,而不是 Visual Studio 的 VisualSVN 扩展。

  • 您可以使用 svnadmin create 创建存储库命令或使用 VisualSVN Server 的 WMI (Windows Management Instrumentation)提供商。下面是创建新存储库“Repo1”的 PowerShell 命令:

    调用-WmiMethod -namespace root\VisualSVN -class VisualSVN_Repository -Name Create -ArgumentList Repo1

  • 您可以使用以下 PowerShell 命令获取存储库“Repo1”的 URL:

    Get-WmiObject -namespace root\VisualSVN -class VisualSVN_Repository |选择对象 -expandproperty URL |选择字符串 -SimpleMatch "Repo1"

如果您想探索 VisualSVN Server WMI 提供程序,您可以检查它的 MOF 文件,该文件位于计算机上的以下文件夹“%VISUALSVN_SERVER%\WMI”中已安装 VisualSVN 服务器。使用此文件作为引用,您可以编写一个程序来管理各种编程语言的 VisualSVN 服务器。

您可能还想查看 MSDN 文章 "Using WMI" .

关于windows - 如何创建可视化 SVN 存储库并获取该 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18099841/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com