简体   繁体   中英

how to manage a SVN repository using the command line (No URL)

I'm trying to manage my SVN repository by the command line. This repository has been migrated from an original VSS server. I need to "extract" a working folder from the SVN repository so to compare all the files of every version and check (in this way) that the migration has been correctly completed.

Since I have a lot of folders and repositories, I should create a batch to complete all the operations.

I have read a book about all the commands to use SVN by the prompt line. The problem is that all the commands (as for example "svn checkout" or "svn export") are all referred to the URL of the repository, and I don't have it since I'm not connected to internet, or they are referred to a working copy, and I haven't found any command to create a working copy by the prompt line. Anyone may help me?

I thank gratefully who ever will answer. :)

See this question regarding accessing a local Subversion repository. In short, if your repository is at C:\\path\\to\\repository, then to get a working copy you'd run svn checkout :

> svn checkout file:///C:/path/to/repository

This will check out the root of the repository to the current directory.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM