How to find out Subversion repository version?

后端 未结 8 2537
深忆病人
深忆病人 2020-12-24 00:00

How can I determine current version of my repository to see if I need to upgrade it (svnadmin upgrade)?

In reality I\'m hosting SVN with 3rd party and I want to find

8条回答
  •  一个人的身影
    2020-12-24 00:35

    If you use VisualSVN Server you can find out the format of the repository via the VisualSVN Server Manager console or via PowerShell. Read the article KB135: Understanding the Subversion repository types and formats for more information.

    VisualSVN Server Manager

    Follow these steps to find out the format of a repository:

    1. Start the VisualSVN Server Manager console.
    2. Right-click a repository and click Properties.
    3. Click the Details tab.

    PowerShell

    Follow these steps to find out the format of a repository via PowerShell:

    1. Start the PowerShell console.
    2. Execute the following command: Get-SvnRepository MyRepo | Format-List

提交回复
热议问题