Reputation: 4780
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
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