Reputation: 10604
Is there a way I can ask Visual source safe to get all the files from a given date for a project? We don't use labels, so I can't roll back to a specific label and am hoping that I can somehow just call a certain date range to get the files as they existed on a specific date? Impossible?
Upvotes: 18
Views: 17812
Reputation: 180788
Using SourceSafe: Get by Date
http://web.archive.org/web/20120615102028/http://brennan.offwhite.net/mtblog/archives/000282.htmll
Upvotes: 2
Reputation: 111
You can right-click the project, choose Show History and get the version of a given date from the history explorer.
Upvotes: 2
Reputation: 28573
Using the command line, use the get
command with the -Vd
parameter
ss get $/Project -R -GTU -Vd4/30/2009;3:00a
I'm not sure, but I don't think there is a way to do this with the ui.
Upvotes: 1