Comprehensive SVN Validation Procedure?

I have a repository configured as follows:

+---CollectionA
|   \---project1
|       \---trunk
|           \---sourcecode
|       \---tags
|           \---rel-1
|   \---project2
|       \---trunk
|           \---sourcecode
|       \---tags
|   \---project3
|       \---trunk
|           \---sourcecode
|       \---tags
|           \---rel-1

I want to check out a project with tags rel-1as this project. In this case, I would have project1, and project3in my workspace, but do not project2.

All projectNare Java Eclipse projects.

I use Eclipse / Subversive, but I am open to use Tortoise or the command line (windows) if I need to.

Change . Currently, I will need to go through my 30 projects and check each tag individually. Is there a way to do this without going through each project separately?

+3
source share
4 answers

, script, . , , Tortoise IDE/SVN, ( ) .

svn , svn list.

(, , , ), , . , , , .

- :

For each project in myProjects:
   exec "svn list " myRepositoryPath + "/" + myProject + "/tags/directory"
+2

, . checkout script, , //, .

, "" // , .

+1

, svn:externals. . , , , .

+1

In addition to the previous answers, you can use scripts to create an Eclipse Team project set file to immediately import all projects. Could not find a direct link to "psf file format", but you get the idea of this example and eclipse help check,

0
source

Source: https://habr.com/ru/post/1729573/


All Articles