NobbZ
NobbZ

Reputation: 1370

Checking out a tag from SVN using chefs subversion ressource

I have found Subversion Ressource in the chef documentation to check out from a subversion repository.

How can I use a subversion ressource to check out a certain tag?

Upvotes: 0

Views: 99

Answers (1)

Ben
Ben

Reputation: 8905

A tag in subversion is just a special location in the repository (usually in /reponame/tags/name_of_your_tag) where a copy of the main development (usually on /reponame/trunk) is stored. You check out a tag in the same way as you check out any other part of a project.

Upvotes: 1

Related Questions