从 VSS 获取给定日期的所有文件?

发布于 2024-07-21 07:21:20 字数 110 浏览 7 评论 0原文

有没有办法让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

无所谓啦 2024-07-28 07:21:20

据我所知,您必须使用 get 在命令提示符下命令,而不是 GUI。 像这样的事情应该做:

ss Get "$/AFolder" -R -Vd15-03-2009;2:00a

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

ss Get "$/AFolder" -R -Vd15-03-2009;2:00a

The -R option makes the get recursive and the -vd option gets the version at the specified date.

岁月无声 2024-07-28 07:21:20

您可以右键单击该项目,选择显示历史记录,然后从历史记录浏览器中获取给定日期的版本。

You can right-click the project, choose Show History and get the version of a given date from the history explorer.

蓝色星空 2024-07-28 07:21:20

使用命令行,使用带有 -Vd 参数的 get 命令

ss get $/Project -R -GTU -Vd4/30/2009 ;3:00a

我不确定,但我认为没有办法用用户界面来做到这一点。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文