Reputation: 23
Can someone pls let me know how to make a tag or branch based on a certain date in SVN?
Upvotes: 2
Views: 2554
Reputation: 52645
One way is from your working copy, from command line, is as follows:
svn copy -r {date-in-iso-format} destination
For example,
svn copy -r {2011-01-18} http://myserver/svn/project/trunk \
http://myserver/svn/project/tags/tag-2011-01-18 \
-m "Tagging project on 18th Jan 2011"
Upvotes: 5