从 VSS 获取给定日期的所有文件?
有没有办法让 Visual source safe 获取项目给定日期的所有文件? 我们不使用标签,因此我无法回滚到特定标签,并且希望我可以以某种方式调用特定日期范围来获取特定日期存在的文件? 不可能的?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
据我所知,您必须使用 get 在命令提示符下命令,而不是 GUI。 像这样的事情应该做:
-R 选项使获取递归,而 -vd 选项获取指定日期的版本。
As far as I know you have to use the get command at a command prompt, not the gui. Something like this should do:
The -R option makes the get recursive and the -vd option gets the version at the specified date.
您可以右键单击该项目,选择显示历史记录,然后从历史记录浏览器中获取给定日期的版本。
You can right-click the project, choose Show History and get the version of a given date from the history explorer.
使用 SourceSafe:按日期获取
http://web.archive.org/web/20120615102028/ http://brennan.offwhite.net/mtblog/archives/000282.htmll
Using SourceSafe: Get by Date
http://web.archive.org/web/20120615102028/http://brennan.offwhite.net/mtblog/archives/000282.htmll
使用命令行,使用带有
-Vd
参数的get
命令ss get $/Project -R -GTU -Vd4/30/2009 ;3:00a
我不确定,但我认为没有办法用用户界面来做到这一点。
Using the command line, use the
get
command with the-Vd
parameterss 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.