Adam
Adam

Reputation: 4780

Tag SVN Repository with SVN.exe at Command Line

I was looking through the various invocations of svn.exe but I'm not seeing a way to tag a repository at the command line. Does anyone know of a command to do that?

Upvotes: 0

Views: 83

Answers (1)

Ben
Ben

Reputation: 8905

A "tag" is just a directory copied from another directory, and (by convention) placed in a "tags" directory.

So the command you are looking for is just svn copy.

Upvotes: 2

Related Questions